forked from fastapi/full-stack-fastapi-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnukikata.yaml
More file actions
53 lines (53 loc) · 2.12 KB
/
nukikata.yaml
File metadata and controls
53 lines (53 loc) · 2.12 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
#project_name: launchwith.click
project_slug: "{{ cookiecutter.project_name|lower|replace(' ', '-') }}"
domain_main: "{{cookiecutter.project_slug}}"
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"]'
smtp_port: '587'
smtp_host: ''
smtp_user: ''
smtp_password: ''
smtp_emails_from_email: info@{{cookiecutter.domain_main}}
postgres_password: changethis
pgadmin_default_user: "{{cookiecutter.first_superuser}}"
pgadmin_default_user_password: "{{cookiecutter.first_superuser_password}}"
traefik_constraint_tag: "{{cookiecutter.domain_main}}"
traefik_constraint_tag_staging: "{{cookiecutter.domain_staging}}"
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/*
- backend/app/app/email-templates/**
aws_region: us-west-2
eks_cluster_name: mycluster
eks_num_workers: '1'
eks_cluster_autoscale: 'false'
eks_cluster_autoscale_min_workers: '1'
eks_cluster_autoscale_max_workers: '1'
vpc_name: myvpc
azs: '1'
num_azs: '1'
iam_instance_profile: ''
network_name: ''
private_key_path: ''
public_key_path: ''
create_sg: 'false'
create: 'true'
create_ebs_volume: 'false'