-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
26 lines (21 loc) · 1020 Bytes
/
Copy pathcookiecutter.json
File metadata and controls
26 lines (21 loc) · 1020 Bytes
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
{
"project_name": "Name of the project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"project_short_description": "A short description of the project",
"docker_image_prefix": "",
"docker_image_backend": "{{cookiecutter.docker_image_prefix}}{{cookiecutter.project_slug}}_backend",
"docker_image_backend_port": 5000,
"docker_image_pg": "{{cookiecutter.docker_image_prefix}}{{cookiecutter.project_slug}}_pg",
"docker_image_pg_port": 5432,
"pg_user": "{{cookiecutter.project_slug}}",
"pg_password": "{{cookiecutter.project_slug}}",
"pg_db": "{{cookiecutter.project_slug}}",
"pg_dsn": "postgresql+asyncpg://{{cookiecutter.pg_user}}:{{cookiecutter.pg_password}}@{{cookiecutter.project_slug}}_pg:5432/{{cookiecutter.pg_db}}",
"test_pg_dsn": "{{cookiecutter.pg_dsn}}_test",
"full_name": "Your name",
"email": "Your address email <you@example.com>",
"version": "0.1.0",
"_copy_without_render": [
"*ci.yaml"
]
}