feat: add initial project structure with core files and configuration
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user