church-api/.env.example
Benjamin Slingo 0c06e159bb Initial commit: Church API Rust implementation
Complete church management system with bulletin management, media processing, live streaming integration, and web interface. Includes authentication, email notifications, database migrations, and comprehensive test suite.
2025-08-19 20:56:41 -04:00

21 lines
507 B
Plaintext

# Database
DATABASE_URL=postgresql://username:password@localhost/church_db
# JWT Secret
JWT_SECRET=your-jwt-secret-key
# Email Configuration
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=your-email@gmail.com
SMTP_PASSWORD=your-password
FROM_NAME=Church Name
FROM_EMAIL=your-email@gmail.com
# Owncast Configuration
OWNCAST_HOST=localhost:8080
STREAM_HOST=stream.rockvilletollandsda.church
# Optional: If using different ports or protocols
# OWNCAST_HOST=127.0.0.1:8080
# STREAM_HOST=localhost:8080