Spaces:
Runtime error
Runtime error
Create startup
Browse files- startup.sh +9 -0
startup.sh
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Make your install script executable (if needed)
|
| 3 |
+
chmod +x install_dependencies.sh
|
| 4 |
+
|
| 5 |
+
# Run your dependencies installer
|
| 6 |
+
./install_dependencies.sh
|
| 7 |
+
|
| 8 |
+
# Start your app
|
| 9 |
+
python3 app.py
|