forked from cookiecutter/cookiecutter-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
86 lines (86 loc) · 1.59 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
{
"project_name": "My Awesome Project",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"project_user": "xstudios",
"description": "Behold My Awesome Project!",
"author_name": "Tim Santor",
"domain_name": "example.com",
"email": "tsantor@xstudios.com",
"version": "0.1.0",
"open_source_license": [
"MIT",
"BSD",
"GPLv3",
"Apache Software License 2.0",
"Not open source"
],
"username_type": [
"username",
"email"
],
"timezone": "UTC",
"windows": "n",
"editor": [
"None",
"PyCharm",
"VS Code"
],
"use_docker": "n",
"postgresql_version": [
"16",
"15",
"14",
"13",
"12"
],
"cloud_provider": [
"AWS",
"GCP",
"Azure",
"None"
],
"mail_service": [
"Mailgun",
"Amazon SES",
"Mailjet",
"Mandrill",
"Postmark",
"Sendgrid",
"Brevo",
"SparkPost",
"Other SMTP"
],
"use_async": "n",
"use_drf": "n",
"frontend_pipeline": [
"None",
"Django Compressor",
"Gulp",
"Webpack"
],
"use_celery": "n",
"use_mailpit": "n",
"use_sentry": "n",
"use_whitenoise": "n",
"use_heroku": "n",
"use_dj_rest_auth": "n",
"use_simplejwt": "n",
"use_oauth": "y",
"use_mosquitto": "n",
"use_django_auditlog": "n",
"use_drf_api_logger": "n",
"use_robots": "n",
"use_perm_filter": "y",
"use_prometheus": "n",
"use_grafana": "n",
"use_node_exporter": "n",
"ci_tool": [
"None",
"Travis",
"Gitlab",
"Github",
"Drone"
],
"keep_local_envs_in_vcs": "y",
"debug": "n"
}