-
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathcookiecutter.json
More file actions
75 lines (75 loc) · 1.26 KB
/
cookiecutter.json
File metadata and controls
75 lines (75 loc) · 1.26 KB
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
{
"project_name": {
"type": "string"
},
"api_type": {
"type": "dict"
},
"db_info": {
"type": "dict"
},
"enable_redis": {
"type": "bool"
},
"enable_rmq": {
"type": "bool"
},
"ci_type": {
"type": "string"
},
"enable_migrations": {
"type": "bool"
},
"enable_taskiq": {
"type": "bool"
},
"enable_routers": {
"type": "bool"
},
"enable_kafka": {
"type": "bool"
},
"enable_loguru": {
"type": "bool"
},
"traefik_labels": {
"type": "bool"
},
"add_dummy": {
"type": "bool"
},
"orm": {
"type": "str"
},
"self_hosted_swagger": {
"type": "bool"
},
"prometheus_enabled": {
"type": "bool"
},
"sentry_enabled": {
"type": "bool"
},
"otlp_enabled": {
"type": "bool"
},
"gunicorn": {
"type": "bool"
},
"add_users": {
"type": "bool"
},
"cookie_auth": {
"type": "bool"
},
"jwt_auth": {
"type": "bool"
},
"_extensions": [
"cookiecutter.extensions.RandomStringExtension"
],
"_copy_without_render": [
"*.js",
"*.css"
]
}