This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
cookiecutter.json
40 lines (30 loc) · 1.82 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
{
"project_name": "Base Project",
"project_slug": "{{ cookiecutter.project_name|lower|replace(' ', '-') }}",
"domain_main": "{{cookiecutter.project_slug}}.com",
"domain_staging": "stag.{{cookiecutter.domain_main}}",
"docker_swarm_stack_name_main": "{{cookiecutter.domain_main|replace('.', '-')}}",
"docker_swarm_stack_name_staging": "{{cookiecutter.domain_staging|replace('.', '-')}}",
"secret_key": "changethis",
"first_superuser": "admin@{{cookiecutter.domain_main}}",
"first_superuser_password": "changethis",
"backend_cors_origins": "http://localhost, http://localhost:4200, http://localhost:3000, http://localhost:8080, https://localhost, https://localhost:4200, https://localhost:3000, https://localhost:8080, http://dev.{{cookiecutter.domain_main}}, https://{{cookiecutter.domain_staging}}, https://{{cookiecutter.domain_main}}, http://local.dockertoolbox.tiangolo.com, http://localhost.tiangolo.com",
"postgres_password": "changethis",
"pgadmin_default_user": "{{cookiecutter.first_superuser}}",
"pgadmin_default_user_password": "changethis",
"traefik_constraint_tag": "{{cookiecutter.domain_main}}",
"traefik_constraint_tag_staging": "{{cookiecutter.domain_staging}}",
"traefik_public_network": "traefik-public",
"traefik_public_constraint_tag": "traefik-public",
"flower_auth": "admin:{{cookiecutter.first_superuser_password}}",
"sentry_dsn": "",
"docker_image_prefix": "",
"docker_image_backend": "{{cookiecutter.docker_image_prefix}}backend",
"docker_image_celeryworker": "{{cookiecutter.docker_image_prefix}}celeryworker",
"docker_image_frontend": "{{cookiecutter.docker_image_prefix}}frontend",
"_copy_without_render": [
"frontend/src/**/*.html",
"frontend/src/**/*.vue",
"frontend/node_modules/*"
]
}