srinivasbt commited on
Commit
f836cde
·
verified ·
1 Parent(s): 03b89c3

Initial commit of Makefile

Browse files

Initial changes of Makefile for my Medical embeddings project.

Files changed (1) hide show
  1. Makefile +13 -0
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