30 lines
773 B
Plaintext
30 lines
773 B
Plaintext
# ===========================================
|
|
# Lageplan App - Environment Configuration
|
|
# ===========================================
|
|
# Copy this file to .env and adjust values
|
|
|
|
# Database
|
|
POSTGRES_USER=lageplan
|
|
POSTGRES_PASSWORD=lageplan_secret
|
|
POSTGRES_DB=lageplan
|
|
DB_PORT=5432
|
|
|
|
# Database URL (for Prisma - uses Docker service name)
|
|
DATABASE_URL=postgresql://lageplan:lageplan_secret@localhost:5432/lageplan
|
|
|
|
# NextAuth
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
NEXTAUTH_SECRET=your-super-secret-key-change-in-production-min-32-chars
|
|
|
|
# MinIO Object Storage
|
|
MINIO_ROOT_USER=minioadmin
|
|
MINIO_ROOT_PASSWORD=minioadmin123
|
|
MINIO_BUCKET=lageplan-icons
|
|
MINIO_API_PORT=9002
|
|
MINIO_CONSOLE_PORT=9003
|
|
MINIO_PUBLIC_URL=http://localhost:9002
|
|
|
|
# Web App
|
|
WEB_PORT=3000
|
|
NODE_ENV=development
|