26 lines
560 B
Bash
26 lines
560 B
Bash
# Database configuration
|
|
DB_USER=postgres
|
|
DB_PASSWORD=postgres
|
|
DB_NAME=matching_app
|
|
|
|
# App configuration
|
|
APP_PORT=8080
|
|
APP_ENV=development
|
|
LOG_LEVEL=debug
|
|
|
|
# Email settings (SMTP)
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your_email@example.com
|
|
SMTP_PASSWORD=your_email_password
|
|
|
|
# AWS S3 Configuration
|
|
AWS_ACCESS_KEY_ID=your_access_key
|
|
AWS_SECRET_ACCESS_KEY=your_secret_key
|
|
AWS_REGION=ap-southeast-1
|
|
AWS_S3_BUCKET=your-bucket-name
|
|
|
|
# Telegram Notification
|
|
TELEGRAM_TOKEN=7141107096:AAGCOQG9N4Ex_MN95RbU16WjTJ_-JTM0s2A
|
|
TELEGRAM_CHAT_ID=-1002693476953
|