30 lines
709 B
Plaintext
30 lines
709 B
Plaintext
|
|
# Server Configuration
|
||
|
|
DEBUG=True
|
||
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
||
|
|
PORT=8080
|
||
|
|
|
||
|
|
# Database Configuration
|
||
|
|
DB_HOST=localhost
|
||
|
|
DB_PORT=5432
|
||
|
|
DB_USER=postgres
|
||
|
|
DB_PASSWORD=123
|
||
|
|
DB_NAME=booking_system
|
||
|
|
DB_SSLMODE=disable
|
||
|
|
|
||
|
|
# JWT Configuration
|
||
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
||
|
|
|
||
|
|
# 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.hostinger.com
|
||
|
|
SMTP_PORT=465
|
||
|
|
SMTP_USERNAME=hello@attunehearttherapy.com
|
||
|
|
SMTP_PASSWORD=G&n2S;ffTc8f
|
||
|
|
SMTP_FROM=hello@attunehearttherapy.com
|
||
|
|
|
||
|
|
# Jitsi Configuration
|
||
|
|
JITSI_BASE_URL=https://meet.attunehearttherapy.com
|