first round of review
This commit is contained in:
parent
7ebfb7a2dd
commit
da5a0d03eb
14 changed files with 362 additions and 244 deletions
11
backend/env.example
Normal file
11
backend/env.example
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# Environment variables for the backend
|
||||
# For local dev: use direnv with the root .envrc file (recommended)
|
||||
# For production: set these in your deployment environment
|
||||
|
||||
# Required: Secret key for JWT token signing
|
||||
# Generate with: python -c "import secrets; print(secrets.token_urlsafe(32))"
|
||||
SECRET_KEY=
|
||||
|
||||
# Database URL
|
||||
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/arbret
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue