mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-25 15:22:10 +00:00
Add Makefile
This commit is contained in:
23
Makefile
Normal file
23
Makefile
Normal file
@@ -0,0 +1,23 @@
|
||||
.PHONY: install run build lint test clean
|
||||
|
||||
install:
|
||||
pnpm install
|
||||
poetry install
|
||||
|
||||
run:
|
||||
poetry run meshchat
|
||||
|
||||
build:
|
||||
pnpm run build
|
||||
|
||||
lint:
|
||||
pnpm run lint
|
||||
poetry run ruff check .
|
||||
poetry run ruff format --check .
|
||||
|
||||
test:
|
||||
pnpm run test
|
||||
poetry run pytest tests/backend --cov=meshchatx/src/backend
|
||||
|
||||
clean:
|
||||
rm -rf node_modules build dist python-dist meshchatx/public build-dir out
|
||||
Reference in New Issue
Block a user