Files
basil/packages/api/.env.example
2025-10-21 22:04:03 -06:00

21 lines
427 B
Plaintext

# Server Configuration
PORT=3001
NODE_ENV=development
# Database
DATABASE_URL="postgresql://basil:basil@localhost:5432/basil?schema=public"
# Storage Configuration
STORAGE_TYPE=local
LOCAL_STORAGE_PATH=./uploads
# S3 Configuration (Optional)
# STORAGE_TYPE=s3
# S3_BUCKET=basil-recipes
# S3_REGION=us-east-1
# S3_ACCESS_KEY_ID=your-access-key
# S3_SECRET_ACCESS_KEY=your-secret-key
# CORS
CORS_ORIGIN=http://localhost:5173