-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
15 lines (13 loc) · 1.05 KB
/
.env.example
File metadata and controls
15 lines (13 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FLASK_SECRET_KEY="replace-with-a-long-random-secret-key"
# ── Google OAuth 2.0 ─────────────────────────────────────────────────────────
# From: https://console.cloud.google.com → APIs & Services → Credentials
GOOGLE_CLIENT_ID="replace_with_your_google_client_id"
GOOGLE_CLIENT_SECRET="replace_with_your_google_client_secret"
GOOGLE_REDIRECT_URI="http://localhost:5000/oauth2callback"
# ── Wikimedia OAuth 2.0 ───────────────────────────────────────────────────────
# Register at: https://meta.wikimedia.org/wiki/Special:OAuthConsumerRegistration
# Choose "OAuth 2.0" when registering your application.
# Set Redirect URI to: http://localhost:5000/wiki_callback
WIKI_CLIENT_ID="replace_with_your_wikimedia_client_id"
WIKI_CLIENT_SECRET="replace_with_your_wikimedia_client_secret"
WIKI_REDIRECT_URI="http://localhost:5000/wiki_callback"