.env.example (422B)
1 # Flask secret key (generate with: python -c "import secrets; print(secrets.token_hex(32))") 2 SECRET_KEY=change-me-to-a-random-string 3 4 # Google OAuth credentials (from https://console.cloud.google.com/apis/credentials) 5 # Create an OAuth 2.0 Client ID with redirect URI: http://localhost:5000/auth/google/callback 6 GOOGLE_CLIENT_ID= 7 GOOGLE_CLIENT_SECRET= 8 9 # Leave GOOGLE_CLIENT_ID empty to run in dev mode (no auth required)