Files
wijtransferen/.env.example
T
2026-08-22 19:34:10 +02:00

22 lines
662 B
Bash

# ── SQLite (default for local dev) ──
DB_DRIVER=sqlite
SQLITE_PATH=./data/surprise.db
# ── Postgres (uncomment and set DB_DRIVER=postgres to use) ──
# DATABASE_URL=postgres://surprise:surprise_dev_password@localhost:5432/surprise?sslmode=disable
PORT=8080
CORS_ORIGIN=http://localhost:5173,http://127.0.0.1:5173
SESSION_SECRET=local-development-session-secret-change-me
COOKIE_SECURE=false
STORAGE_ENDPOINT=localhost:9000
STORAGE_PUBLIC_ENDPOINT=
STORAGE_ACCESS_KEY=minioadmin
STORAGE_SECRET_KEY=minioadmin
STORAGE_BUCKET=gallery-media
STORAGE_USE_SSL=false
MINIO_API_PORT=9000
MINIO_CONSOLE_PORT=9001
VITE_API_BASE_URL=http://localhost:8080