first commit

This commit is contained in:
2025-03-09 16:44:45 +11:00
commit 8bcb52c93a
4 changed files with 202 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
PYTHON := 3.12
VENV_PATH := .venv
PORT := 8501
.PHONY: venv
venv:
uv venv --python $(PYTHON) --allow-existing $(VENV_PATH)
source $(VENV_PATH)/bin/activate && uv pip install -r requirements.txt
run: venv
source $(VENV_PATH)/bin/activate && $(VENV_PATH)/bin/streamlit run app.py --server.port $(PORT)