Spaces:
Runtime error
Runtime error
Delete config/paths.py
Browse files- 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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|