20 lines
571 B
Plaintext
20 lines
571 B
Plaintext
# Portfolio Infrastructure - Environment Configuration
|
|
# Copy this to .env and fill in your values
|
|
|
|
# Database Configuration
|
|
DB_USER=directus
|
|
DB_PASSWORD=your_secure_database_password_here
|
|
|
|
# Directus Admin Account
|
|
ADMIN_EMAIL=your_email@example.com
|
|
ADMIN_PASSWORD=your_secure_admin_password_here
|
|
|
|
# Directus Security Keys (generate with: openssl rand -base64 32)
|
|
DIRECTUS_KEY=your_directus_key_here
|
|
DIRECTUS_SECRET=your_directus_secret_here
|
|
|
|
# Public URL
|
|
# For local: http://localhost:8055
|
|
# For Coolify: https://directus.yourdomain.com
|
|
PUBLIC_URL=http://localhost:8055
|