19 lines
450 B
Plaintext
19 lines
450 B
Plaintext
# App config
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Database config
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=pandektes
|
|
POSTGRES_PORT=5432
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/pandektes?schema=public"
|
|
|
|
# Storage Config (MinIO / S3 / R2)
|
|
STORAGE_ENDPOINT=http://localhost:9000
|
|
STORAGE_ACCESS_KEY=minioadmin
|
|
STORAGE_SECRET_KEY=minioadmin
|
|
STORAGE_BUCKET=cases
|
|
STORAGE_REGION=us-east-1
|
|
STORAGE_FORCE_PATH_STYLE=true
|