-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcookiecutter.json
More file actions
27 lines (27 loc) · 1.27 KB
/
cookiecutter.json
File metadata and controls
27 lines (27 loc) · 1.27 KB
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
{
"hostname": "app",
"domain": "localhost",
"project_name": "Angular FastAPI",
"secret_key": "09d25e094faa6ca2556c818126b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7",
"project_slug": "{{ cookiecutter.project_name|lower|replace(' ', '-') }}",
"angular_slug": "app-{{ cookiecutter.project_slug }}",
"api_slug": "api-{{ cookiecutter.project_slug }}",
"api_port": "8000",
"api_url": "{{cookiecutter.domain}}:{{cookiecutter.api_port}}",
"python_slug": "{{ cookiecutter.api_slug|replace('-', '_') }}",
"author": "Micheal Taylor",
"author_email": "bubthegreat@gmail.com",
"url": "",
"project_description": "This is a basic Angular FastAPI implementation!",
"redis_hostname": "redis-{{ cookiecutter.project_slug }}",
"redis_volume": "{{ cookiecutter.redis_hostname }}-vol",
"mysql_hostname": "mysql-{{ cookiecutter.project_slug }}",
"mysql_volume": "mysql-{{ cookiecutter.project_slug }}-vol",
"mysql_root_password": "angular-fastapi",
"mysql_database": "angular-fastapi",
"mysql_user": "angular-fastapi",
"mysql_password": "angular-fastapi",
"postgres_hostname": "postgres-{{ cookiecutter.project_slug }}",
"postgres_volume": "postgres-{{ cookiecutter.project_slug }}-vol",
"traefik-network": "traefik-public"
}