-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
49 lines (44 loc) · 1.7 KB
/
cookiecutter.json
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
49
{
"system_name": "XSystem",
"system_slug": "{{ cookiecutter.system_name.lower()|replace(' ', '_')|replace('-', '_')|replace('_', '') }}",
"project_name": "XProject",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"system_project_slug": "{{ cookiecutter.system_slug }}_{{ cookiecutter.project_slug }}",
"system_project_short": "{{ cookiecutter.system_slug }}{{ cookiecutter.project_slug }}",
"system_project_name": "{{ cookiecutter.system_name }} {{ cookiecutter.project_name }}",
"system_project_id": "01",
"author_name": "Your Name",
"email": "[email protected]",
"git_url": "https://github.com/path/to/project.git",
"description": "A short description of the project.",
"domain_name": "{{ cookiecutter.project_slug }}.{{ cookiecutter.system_slug }}.com",
"version": "0.1.0",
"timezone": "Asia/Shanghai",
"use_pycharm": "y",
"use_cas": "n",
"use_mailhog": "n",
"use_celery": "n",
"use_docker": "n",
"use_compressor": "n",
"use_websocket": "n",
"use_cloudstorage": "n",
"postgresql_version": ["9.6", "9.5", "9.4", "9.3", "9.2"],
"mysql_version": ["5.5", "5.6", "5.7", "8"],
"python_version": ["3.5", "3.6"],
"use_python3": "y",
"use_postgresql": "n",
"use_postgresql_alias": "db2",
"use_mysql": "n",
"use_mysql_alias": "default",
"release_date": "{% now 'local' %}",
"_extensions": ["jinja2_time.TimeExtension"],
"_copy_without_render": [
"playbook/*.yml",
"playbook/defaults/*",
"playbook/files/*",
"playbook/handlers/*",
"playbook/roles/*",
"playbook/tasks/*",
"playbook/templates/*"
]
}