Update app.sh
Browse files
app.sh
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
-
# #!/bin/bash
|
2 |
-
# streamlit run app.py --server.port 7860 --server.address 0.0.0.0
|
3 |
#!/bin/bash
|
4 |
-
streamlit run app.py
|
5 |
-
|
6 |
|
|
|
|
|
|
|
7 |
|
|
|
|
|
8 |
|
|
|
|
|
|
|
|
|
|
1 |
#!/bin/bash
|
|
|
|
|
2 |
|
3 |
+
# Set up virtual environment
|
4 |
+
python -m venv venv
|
5 |
+
source venv/bin/activate
|
6 |
|
7 |
+
# Install dependencies
|
8 |
+
pip install -r requirements.txt
|
9 |
|
10 |
+
# Run the Streamlit app
|
11 |
+
streamlit run app.py
|