19 lines
610 B
Plaintext
19 lines
610 B
Plaintext
|
|
# 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))"
|