-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopier.yml
48 lines (39 loc) · 1.19 KB
/
copier.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# questions
project_name:
type: str
help: What is your project name?
validator: >-
{% if not (project_name | regex_search('^[a-z][a-z0-9\-]+$')) %}
project_name must start with a letter, followed one or more letters, digits or dashes all lowercase.
{% endif %}
project_description:
type: str
help: Can you give a brief description of your application?
include_precommit:
type: bool
default: false
help: Do you want to include pre-commit?
db_user_name:
type: str
help: What would be your first database user name?
validator: >-
{% if not (db_user_name | regex_search('^[a-z][a-z0-9]+$')) %}
db_user_name must start with a letter, followed one or more letters, digits all lowercase.
{% endif %}
db_password:
type: str
help: What would be your first database user's password?
validator: >-
{% if not (db_password | regex_search('^[a-z][a-z0-9]+$')) %}
db_password must start with a letter, followed one or more letters, digits all lowercase.
{% endif %}
_exclude:
- copier.yml
- .git
- .idea
- .vscode
- __pycache__
- .coverage
_tasks:
- "python load_dotenv.py"
- "rm load_dotenv.py"