- Reduce .env.example to only DATABASE_URL - Simplify backend/config.py to only read database connection - All other settings now managed via database and Web UI
21 lines
771 B
Plaintext
21 lines
771 B
Plaintext
# ============================================
|
|
# TranscriptorIO Configuration
|
|
# ============================================
|
|
#
|
|
# IMPORTANT: Most configuration is now stored in the database
|
|
# and managed through the Web UI Settings page.
|
|
#
|
|
# Only DATABASE_URL is required in this file.
|
|
# Run the server and complete the Setup Wizard for initial configuration.
|
|
#
|
|
|
|
# === Database Configuration (REQUIRED) ===
|
|
# SQLite (default - good for single-user, no additional driver needed)
|
|
DATABASE_URL=sqlite:///./transcriptarr.db
|
|
|
|
# PostgreSQL (recommended for production, requires psycopg2-binary)
|
|
# DATABASE_URL=postgresql://user:password@localhost:5432/transcriptarr
|
|
|
|
# MariaDB/MySQL (requires pymysql)
|
|
# DATABASE_URL=mariadb+pymysql://user:password@localhost:3306/transcriptarr
|