mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-16 12:46:07 +00:00
* feat: add recording viewer and vnc * feat: add recording viewer and vnc * feat: add recording viewer and vnc * feat: add recording viewer and vnc * chore: update gitignore [skip ci] * chore: update dev compose [skip ci] * fix: only run manually
7 lines
192 B
Python
7 lines
192 B
Python
from pathlib import Path
|
|
import os
|
|
|
|
DATABASE_PATH = "data/database.db"
|
|
RECORDINGS_DIR = Path("media/recordings")
|
|
RECORDINGS_ENABLED = os.getenv("RECORDINGS_ENABLED", "true").lower() == "true"
|