24Sureshkumar commited on
Commit
3dd44c2
·
verified ·
1 Parent(s): 0107a1c

Update app.sh

Browse files
Files changed (1) hide show
  1. app.sh +7 -4
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