DemoStreamlit / makefile
kimi0230's picture
feat: makefile
329e82f
raw
history blame contribute delete
No virus
126 Bytes
all: start
install:
pip3 install -r requirements.txt
start:
streamlit run app.py
.PHONY: clean build start install all