feat: add initial project structure with core files and configuration

This commit is contained in:
2024-11-27 01:59:42 +00:00
commit 6d0186c8c0
20 changed files with 377 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
all: ensure_env format build install
format:
./.venv/bin/python -m pip install black
./.venv/bin/python -m black .
ensure_env:
-@python3 -m venv .venv
build:
./.venv/bin/python -m pip install build
./.venv/bin/python -m build .
install:
./.venv/bin/python -m pip install -e .
run:
python -m ragnar.run