-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
25 lines (21 loc) · 808 Bytes
/
Copy pathenv.example
File metadata and controls
25 lines (21 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Discord Bot Configuration
DISCORD_TOKEN=your_discord_bot_token_here
WIKI_AUTHOR_ROLE_ID=123456789012345678
ALLOWED_ROLE_IDS=123456789012345678,987654321098765432
DISCORD_PREFIX="w$"
# MediaWiki OAuth Configuration
MW_CONSUMER_KEY=your_mediawiki_consumer_key
MW_CONSUMER_SECRET=your_mediawiki_consumer_secret
MW_API_URL=https://your.wiki.org/api.php
MW_BASE_URL=https://your.wiki.org
# Flask API Configuration
FLASK_SECRET_KEY=your_super_secret_flask_key_here
JWT_SECRET=your_jwt_secret_key_here
# Flask API URLs
VERIFICATION_URL=http://localhost:5000/verify
CALLBACK_URL=http://localhost:5000/verify/callback
# Database Configuration
POSTGRES_USER=wiki-link-user
POSTGRES_PASSWORD=password
POSTGRES_DB=wiki-link-db
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}