-
Notifications
You must be signed in to change notification settings - Fork 46
/
cookiecutter.json
27 lines (27 loc) · 1.02 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
{
"project_name": "Hello World"
, "project_description": "Add a short project description here."
, "main_module": "{{ cookiecutter.project_name|lower|replace(' ', '_')|replace('-', '_') }}"
, "github_username": "Fueled"
, "github_repository": "{{ cookiecutter.main_module|replace('_', '-') }}-backend"
, "timezone": "UTC"
, "default_from_email": "{{ cookiecutter.project_name }} <support@{{ cookiecutter.main_module }}.com>"
, "version": "0.0.0"
, "add_newrelic" : "y"
, "add_postgis": "n"
, "add_heroku": "n"
, "add_fly": "n"
, "enable_whitenoise": "n"
, "add_ansible": "y"
, "letsencrypt": "y"
, "letsencrypt_email": "backend+{{ cookiecutter.main_module|replace('_', '-') }}@fueled.com"
, "have_password_protected_docs": "n"
, "add_sentry": "y"
, "add_django_auth_wall": "y"
, "add_celery": "n"
, "add_graphql": "n"
, "add_asgi": "n"
, "add_pre_commit": "y"
, "add_docker": "y"
, "pagination": ["LimitOffsetPagination", "CursorPagination"]
}