Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ REDIRECT_URI=http://127.0.0.1:5000/callback
GENAI_API_KEY=your_gemini_api_key

# Flask Configuration
# Required when FLASK_ENV=production; generated per-restart in development
FLASK_SECRET_KEY=your_secure_random_key_here
FLASK_ENV=development
# SERVER_NAME=127.0.0.1:5000 # Optional

# Dev server (never enable the debugger on a public interface)
FLASK_DEBUG=0
FLASK_RUN_HOST=127.0.0.1
FLASK_RUN_PORT=5000

# Comma-separated origins allowed to call the API with cookies
# CORS_ORIGINS=http://localhost:8080,http://127.0.0.1:8080
# Comma-separated origins the OAuth flow may redirect back to (defaults to CORS_ORIGINS)
# ALLOWED_REDIRECT_ORIGINS=http://localhost:8080
# DEFAULT_FRONTEND_REDIRECT=http://127.0.0.1:8080/preferences

# Limits
# MAX_PLAYLIST_LENGTH=100
# MAX_CONTENT_LENGTH=2097152
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ ENV/

# Environment Variables
.env
.env.*
!.env.example

# Flask
instance/
.webassets-cache
.flask_session/
flask_session/
flask_session_data/
*.db

# OS
.DS_Store
Loading