18 lines
529 B
Plaintext
18 lines
529 B
Plaintext
# Banatie API Configuration
|
|
BANATIE_API_URL=http://localhost:3000
|
|
|
|
# Database Configuration (Direct admin access)
|
|
POSTGRES_URL=postgresql://banatie_user:banatie_secure_password@localhost:5434/banatie
|
|
|
|
# MinIO Storage Configuration
|
|
MINIO_ENDPOINT=http://localhost:9000
|
|
MINIO_ACCESS_KEY=your_minio_access_key
|
|
MINIO_SECRET_KEY=your_minio_secret_key
|
|
|
|
# Admin Authentication
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=your_secure_admin_password
|
|
|
|
# Next.js Configuration
|
|
NEXTAUTH_URL=http://localhost:3003
|
|
NEXTAUTH_SECRET=your_nextauth_secret |