20 lines
500 B
YAML
20 lines
500 B
YAML
service:
|
|
root_path: "/api/v1"
|
|
project_name: {{ cookiecutter.project_name }}
|
|
debug: true
|
|
|
|
secret_key: ChangeME
|
|
token_expiration_days: 28
|
|
cors_origins:
|
|
- "http://localhost:5000"
|
|
- "https://{{ cookiecutter.project_slug }}.xyz"
|
|
|
|
environment: "local"
|
|
log_level: "DEBUG"
|
|
|
|
redis_url: "redis://redis:6379"
|
|
database_url: "asyncpg://{{ cookiecutter.project_slug }}:{{ cookiecutter.project_slug }}@postgres:5432/{{ cookiecutter.project_slug }}"
|
|
|
|
timezone: "UTC"
|
|
sentry_url: null
|