-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
96 lines (88 loc) · 2.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"project_title": "Project name",
"project_name": "{{ cookiecutter.project_title.lower() | slugify }}",
"project_short_description": "A Django project.",
"versioning": ["natural", "bumpver"],
"language": ["de", "en", "es", "fr", "it", "ja", "zh"],
"multiple_languages": true,
"init_git_repository": false,
"__prompts__": {
"project_title": "Input your full project name",
"project_name": "Customize your project directory name if needed",
"project_short_description": "Give a short description for this project",
"versioning": "What kind of versionning will you use",
"language": "Default project language",
"init_git_repository": "Do you want to init a GIT repository with an initial commit?",
"multiple_languages": "Enable internationalization with I18N"
},
"__version": "{% if cookiecutter.versioning == 'natural' %}0.1.0{% else %}{% now 'local', '%y.%W.0' %}{% endif %}",
"_bireli_version": "0.3.13",
"_bireli_newapp_version": "0.1.1",
"_python_version": ">=3.10",
"_django_version": ">=4.0,<4.1",
"_project_composer_version": ">=0.7.0,<0.8.0",
"_django_configurations_version": ">=2.4.2,<2.5.0",
"_node_version": ">=18.0.0",
"_npm_version": ">=8.0.0",
"_bootstrap_version": "5.2.0",
"_webpack_version": "^5.50.0",
"_languages": {
"en": {
"name": "English",
"timezone": "America/Chicago"
},
"de": {
"name": "Deutsch",
"timezone": "Europe/Berlin"
},
"es": {
"name": "Español",
"timezone": "Europe/Madrid"
},
"fr": {
"name": "French",
"timezone": "Europe/Paris"
},
"it": {
"name": "Italiano",
"timezone": "Europe/Rome"
},
"ja": {
"name": "日本語",
"timezone": "Asia/Tokyo"
},
"zh": {
"name": "官话",
"timezone": "Asia/Shanghai"
}
},
"_backend_stack": [
"python",
"django",
"project_composer",
"django_configurations"
],
"_frontend_stack": [
"node",
"npm",
"bootstrap",
"webpack"
],
"_copy_without_render": [
"frontend/scss",
"frontend/js",
"frontend/.stylelintrc.json",
"frontend/.stylelintignore",
"project/locale",
"project/static",
"project/static-sources",
"project/templates",
"tests"
],
"_apply_symlink_to": [
[
"project/static-sources/ckeditor",
"project/static-sources/djangocms_text_ckeditor"
]
]
}