12 lines
712 B
Python
12 lines
712 B
Python
# config.py - Switch Config Manager
|
|
# Copy this file to config.py and fill in your values.
|
|
|
|
# ─── NocoDB ───────────────────────────────────────────────────────────────────
|
|
NOCODB_URL = "http://your-nocodb-host:8080"
|
|
NOCODB_TOKEN = "your-nocodb-api-token"
|
|
NOCODB_BASE_ID = "your-base-id"
|
|
NOCODB_TABLE_ID = "your-table-id"
|
|
|
|
# ─── Output ───────────────────────────────────────────────────────────────────
|
|
CONFIGS_DIR = "/configs"
|