forked from reef-technologies/cookiecutter-rt-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
45 lines (45 loc) · 1.85 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
{
"repostory_name": "project",
"project_short_description": "I am lazy and haven't written any project description",
"django_project_name": "project",
"django_default_app_name": "core",
"monitoring": "y",
"monitor_view_execution_time_in_djagno": "y",
"monitor_tcpstat": "y",
"postgres_user": "postgres",
"use_celery": "y",
"use_flower": "n",
"sentry_dsn": "",
"csp_enabled": "n",
"csp_report_only": "y",
"csp_report_url": "{% if cookiecutter.csp_enabled == 'y' %}https://sentry.io/api/-1/security/?sentry_key=key{% endif %}",
"csp_default_src": "'none'",
"csp_script_src": "'self'",
"csp_style_src": "'self'",
"csp_font_src": "'self'",
"csp_img_src": "'self'",
"csp_media_src": "'self'",
"csp_object_src": "'self'",
"csp_frame_src": "'self'",
"csp_connect_src": "'self'",
"csp_child_src": "'self'",
"csp_manifest_src": "'self'",
"csp_worker_src": "'self'",
"csp_block_all_mixed_content": "y",
"csp_exclude_url_prefixes": "",
"nginx_redirect_www_prefix": "y",
"nginx_compression_enabled": "n",
"use_alpine_linux": "n",
"aws_use_packer": "n",
"aws_project_name": "{{ cookiecutter.repostory_name }}",
"aws_infra_bucket": "{{ cookiecutter.aws_project_name }}-{{ random_ascii_string(6)|lower }}",
"aws_region": "us-east-1",
"aws_ami_image": "{% if cookiecutter.aws_use_packer == 'n' %}*ubuntu-focal-20.04-amd64-minimal-*{% else %}docker-optimized-*{% endif %}",
"aws_ami_image_owner": "{% if cookiecutter.aws_use_packer == 'n' %}099720109477{% else %}self{% endif %}",
"aws_base_domain_name": "fake-domain.com",
"aws_domain_name": "api.{{ cookiecutter.aws_base_domain_name }}",
"aws_staging_domain_name": "staging.{{ cookiecutter.aws_domain_name }}",
"aws_ec2_ssh_key": "",
"ci_use_linter": "y",
"ci_use_spellchecker": "y"
}