feat: add build server configuration with CI pipeline and deployment settings

This commit is contained in:
2024-11-26 05:04:33 +00:00
parent 14e6322132
commit 05edc9a666
19 changed files with 61 additions and 3 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
all: ensure_env clean build serve
all: clean ensure_env build install serve
clean:
-@rm -rf src/rupload/__pycache__
@@ -9,6 +9,8 @@ ensure_env:
build:
./.venv/bin/python -m pip install build
./.venv/bin/python -m build .
install:
./.venv/bin/python -m pip install -e .
serve: