NexusInstruments commited on
Commit
ebef6e3
·
verified ·
1 Parent(s): 2a5208d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
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__))