Initial commit - Church Music Database

This commit is contained in:
2026-01-27 18:04:50 -06:00
commit d367261867
336 changed files with 103545 additions and 0 deletions

18
.env.example Normal file
View File

@@ -0,0 +1,18 @@
# Church Music Database - Environment Configuration Template
# Copy this file to .env and fill in your actual values
# PostgreSQL Database Connection
POSTGRESQL_URI=postgresql://songlyric_user:YOUR_SECURE_PASSWORD_HERE@localhost:5432/church_songlyric
# Flask Configuration
FLASK_PORT=8080
FLASK_ENV=production
SECRET_KEY=generate_random_secret_key_here
# Optional API Tokens
GENIUS_TOKEN=your_genius_api_token_here_if_used
# Security Note:
# - Never commit .env file to version control
# - Use strong, unique passwords
# - Generate SECRET_KEY with: python -c "import secrets; print(secrets.token_hex(32))"