Astridkraft commited on
Commit
9558bb3
·
verified ·
1 Parent(s): 8f1b020

Delete config/paths.py

Browse files
Files changed (1) hide show
  1. config/paths.py +0 -11
config/paths.py DELETED
@@ -1,11 +0,0 @@
1
- from pathlib import Path
2
- import os
3
-
4
- # Basis-Pfad: /data (wenn vorhanden), sonst /app
5
- if os.path.exists("/data"):
6
- BASE_PATH = Path("/data")
7
- else:
8
- BASE_PATH = Path("/app") # für Tests ohne Storage
9
-
10
- PROJECTS_PATH = BASE_PATH / "projekte"
11
- MEMORY_PATH = BASE_PATH / "memory"