Initial commit: Lageplan v1.0 - Next.js 15.5, React 19
This commit is contained in:
29
.env.example
Normal file
29
.env.example
Normal file
@@ -0,0 +1,29 @@
|
||||
# ===========================================
|
||||
# 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
|
||||
Reference in New Issue
Block a user