- Update SMTP configuration to use Hostinger email settings - Add Jitsi configuration for custom meet domain - Enhance Makefile with comprehensive Docker and development commands - Update email template support email address - Improve environment example file with more detailed configuration Standardizes configuration across development and production environments, enhancing deployment flexibility and maintainability.
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Server Configuration
|
|
PORT=8080
|
|
HOST=localhost
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_USER=postgres
|
|
DB_PASSWORD=your_password
|
|
DB_NAME=booking_system
|
|
DB_SSLMODE=disable
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your-super-secret-jwt-key
|
|
JWT_EXPIRATION=24h
|
|
|
|
# Stripe Configuration
|
|
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
|
|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your_publishable_key
|
|
|
|
# SMTP Configuration
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=your_email@gmail.com
|
|
SMTP_PASSWORD=your_app_password
|
|
SMTP_FROM=your_email@gmail.com
|
|
|
|
# Jitsi Configuration
|
|
# For public Jitsi (meet.jit.si) - JWT not required, leave API_KEY and APP_ID empty
|
|
JITSI_BASE_URL=https://meet.attunehearttherapy.com
|
|
JITSI_API_KEY=your_jitsi_api_key
|
|
JITSI_APP_ID=attunehearttherapy_id
|
|
JITSI_PRIVATE_KEY=attunehearttherapy_jitsi_private_key
|
|
|
|
# For self-hosted Jitsi with JWT authentication - fill in these values
|
|
# JITSI_BASE_URL=https://meet.yourdomain.com
|
|
# JITSI_API_KEY=your_jwt_secret_key
|
|
# JITSI_APP_ID=your_jitsi_app_id
|
|
JITSI_PRIVATE_KEY=your_jitsi_private_key |