-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 2.07 KB
/
Copy path.env.example
File metadata and controls
29 lines (25 loc) · 2.07 KB
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
26
27
28
29
# Copy this file to `.env` and fill in values. `.env` is gitignored.
# After filling in the token below, run: python scripts/setup.py
# That wizard discovers your ClickUp workspace structure + calendar and
# writes `os-config.json` (also gitignored). Re-run anytime to refresh.
# ─── ClickUp ─────────────────────────────────────────────────────────────────
# Personal API token — ClickUp Settings > Apps > API Token
CLICKUP_TOKEN=your_clickup_token_here
# ─── Spotify ─────────────────────────────────────────────────────────────────
# 1. Go to https://developer.spotify.com/dashboard and create an app.
# 2. In your app settings, add this exact redirect URI:
# http://127.0.0.1:8888/callback
# 3. Copy Client ID and Client Secret below.
# Scopes used: user-read-playback-state, user-modify-playback-state,
# user-read-currently-playing
SPOTIFY_CLIENT_ID=your_spotify_client_id_here
SPOTIFY_CLIENT_SECRET=your_spotify_client_secret_here
# ─── Ambient Sounds ──────────────────────────────────────────────────────────
# Sound URLs are now configured in os-config.json under ambience.sounds.
# Run `python scripts/download_sounds.py` after changing a URL to re-pull.
# ─── First-run demo data ─────────────────────────────────────────────────────
# When True, the setup wizard seeds <project_root>/task-stats.json with random
# completion counts for the last 14 days so the TaskStats chart looks alive
# on first launch. Only applies if the stats file doesn't already exist —
# never overwrites real data. Set to False to start with an empty chart.
RANDOM_COMPLETIONS_ON_DOWNLOAD=True