Ēriks K ef5da867a6 Improve template (#1)
- Created a README file
- Added PyCharm/IntelliJ IDE run configuration
- Squashed bugs related to:
  - Code style
  - Default Postgre database URL schema
- Updated project dependencies

Reviewed-on: #1
Co-authored-by: Ēriks K <git@72.lv>
Co-committed-by: Ēriks K <git@72.lv>
2025-04-05 13:15:41 +03:00

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