Files
metabuilder/deployment/env/.env.development.example

39 lines
859 B
Plaintext

# Development Environment Variables
# Copy this file to .env.development for local development
# PostgreSQL Database (Development)
POSTGRES_PASSWORD=dev_password
DATABASE_URL=postgresql://metabuilder:dev_password@localhost:5433/metabuilder_dev
# Redis Cache (Development)
REDIS_PASSWORD=
REDIS_URL=redis://localhost:6380
# DBAL Daemon
DBAL_BIND_ADDRESS=0.0.0.0
DBAL_PORT=8081
DBAL_LOG_LEVEL=debug
DBAL_MODE=development
DBAL_DAEMON=false
# MetaBuilder App
NODE_ENV=development
PORT=5173
DBAL_API_URL=http://localhost:8081
VITE_HMR_HOST=localhost
# Security (weak passwords OK for development)
JWT_SECRET=dev_jwt_secret
SESSION_SECRET=dev_session_secret
# Email (use Mailhog in development)
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_USER=
SMTP_PASSWORD=
SMTP_FROM=dev@localhost
# Domain
DOMAIN=localhost
PROTOCOL=http