-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
62 lines (62 loc) · 1.05 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
{
"project_name": "django-blueprint",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"settings_module": [
"config.settings.local",
"config.settings.production"
],
"runner": [
"wsgi",
"asgi"
],
"celery": [
"no",
"yes"
],
"cache": [
"no",
"yes"
],
"script": [
"entrypoint.sh",
"entrypoint-server.sh"
],
"key": "key",
"port": "8081",
"phone": "998888112309",
"password": "2309",
"max_line_length": "120",
"silk": [
false,
true
],
"storage": [
false,
true
],
"channels": [
true,
false
],
"rosetta": [
true,
false
],
"cacheops": [
true,
false
],
"ckeditor": [
true,
false
],
"modeltranslation": [
true,
false
],
"parler": [
false,
true
],
"version": "0.1.1"
}