Initial commit - Church Music Database
This commit is contained in:
18
.env.example
Normal file
18
.env.example
Normal 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))"
|
||||
Reference in New Issue
Block a user