21 lines
621 B
Python
21 lines
621 B
Python
# config.example.py — Template for secrets.py
|
|
# ==============================================
|
|
# Copy this file to secrets.py and fill in your values.
|
|
# secrets.py is git-ignored; never commit it.
|
|
#
|
|
# To deploy to your Presto:
|
|
# 1. Copy this file: cp config.example.py secrets.py
|
|
# 2. Edit secrets.py with your credentials
|
|
# 3. Copy secrets.py to the Presto alongside main.py
|
|
#
|
|
# --- Required variables ---
|
|
|
|
# Your WiFi network name (SSID)
|
|
WIFI_SSID = "your-wifi-ssid"
|
|
|
|
# Your WiFi password
|
|
WIFI_PASSWORD = "your-wifi-password"
|
|
|
|
# Music Library API token (get it from the app admin)
|
|
API_TOKEN = "your-api-token"
|