Spaces:
Running
Running
Initial commit of Makefile
Browse filesInitial changes of Makefile for my Medical embeddings project.
Makefile
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#Make file for my hf_medical_model2
|
2 |
+
|
3 |
+
run:
|
4 |
+
# Run the Streamlit app locally
|
5 |
+
streamlit run app.py
|
6 |
+
|
7 |
+
install:
|
8 |
+
# Install dependencies
|
9 |
+
pip install -r requirements.txt
|
10 |
+
|
11 |
+
test:
|
12 |
+
# Run a basic test to check if the app starts
|
13 |
+
streamlit run app.py --server.headless true --server.port 8501
|