Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import sys, os
|
| 2 |
|
| 3 |
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
|
| 3 |
+
print("DEBUG: Current working directory:", os.getcwd())
|
| 4 |
+
print("DEBUG: Files here:", os.listdir(os.getcwd()))
|
| 5 |
+
print("DEBUG: /app contains:", os.listdir("/app"))
|
| 6 |
+
print("DEBUG: Full tree under /app:", list(os.walk("/app")))
|
| 7 |
+
|
| 8 |
+
|
| 9 |
import sys, os
|
| 10 |
|
| 11 |
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|