Separating audio uploads from extracted audio
All checks were successful
Build and Push / build (push) Successful in 13m7s

This commit is contained in:
2026-07-21 01:42:21 +00:00
parent 7e373cc6c4
commit 0daca2f208

View File

@@ -8,7 +8,7 @@ from pathlib import Path
# Deploy-time config (env vars) - where things live on disk inside the container.
DATA_DIR = Path(os.environ.get("APP_DATA_DIR", "/data"))
UPLOAD_DIR = DATA_DIR / "audio"
UPLOAD_DIR = DATA_DIR / "uploads"
AUDIO_DIR = DATA_DIR / "audio"
TRANSCRIPT_DIR = DATA_DIR / "transcriptions"
NOTES_DIR = DATA_DIR / "notes"