arbret/.envrc

12 lines
420 B
Text
Raw Normal View History

2025-12-18 22:24:46 +01:00
# Local development environment variables
# To use: install direnv (https://direnv.net), then run `direnv allow`
# Backend
export SECRET_KEY="dev-secret-key-change-in-production"
export DATABASE_URL="postgresql+asyncpg://postgres:postgres@localhost:5432/arbret"
export TEST_DATABASE_URL="postgresql+asyncpg://postgres:postgres@localhost:5432/arbret_test"
# Frontend
export NEXT_PUBLIC_API_URL="http://localhost:8000"