24 lines
543 B
Plaintext
24 lines
543 B
Plaintext
# Custom Node API Configuration
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=directus
|
|
DB_USER=directus
|
|
DB_PASSWORD=directus
|
|
|
|
# Directus Integration
|
|
DIRECTUS_URL=http://localhost:8055
|
|
DIRECTUS_ADMIN_EMAIL=admin@assetmanagement.com
|
|
DIRECTUS_ADMIN_PASSWORD=AssetAdmin2024!
|
|
|
|
# JWT Configuration (should match Directus)
|
|
JWT_SECRET=your-jwt-secret-key-here
|
|
JWT_EXPIRES_IN=1h
|
|
|
|
# Security
|
|
CORS_ORIGIN=http://localhost:5173,http://localhost:3000
|
|
RATE_LIMIT_WINDOW_MS=900000
|
|
RATE_LIMIT_MAX_REQUESTS=100 |