Spaces:
Runtime error
Runtime error
Create .startup.py
Browse files- .startup.py +7 -0
.startup.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
# Specify the desired directory path
|
4 |
+
directory_path = "/app"
|
5 |
+
|
6 |
+
# Change the current directory to the specified path
|
7 |
+
os.chdir(directory_path)
|