-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.py
More file actions
23 lines (18 loc) · 808 Bytes
/
config.example.py
File metadata and controls
23 lines (18 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
"""
Configuration template for Captain's Sheet Helper
Copy this file to config.py and fill in your actual values.
DO NOT commit config.py to git - it contains sensitive information.
"""
# Google Sheets configuration
SHEET_ID = "your-google-sheet-id-here"
# Cyberskyline configuration
# Use the appropriate URL for your needs:
# - Gymnasium URL for testing (has real challenge data)
# - Team Game URL for actual competition
CYBERSKYLINE_URL = "https://cyberskyline.com/world/your-world-id-here"
# Example URLs (replace with your actual world IDs):
# Gymnasium: https://cyberskyline.com/world/YOUR_GYMNASIUM_WORLD_ID
# Team Game: https://cyberskyline.com/world/YOUR_TEAM_GAME_WORLD_ID
# Authentication paths
COOKIE_FILE = "/path/to/your/cyberskyline_cookies.txt"
TOKEN_PATH = "/path/to/your/token.pickle"