25 lines
555 B
Plaintext
25 lines
555 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
|
|
|
|
# AI Config
|
|
GOOGLE_API_KEY=your_gemini_api_key_here
|
|
|
|
# Redis Config
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379 |