mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
21 lines
222 B
Makefile
21 lines
222 B
Makefile
run:
|
|
uv run python -m src.main
|
|
|
|
sync:
|
|
uv sync
|
|
|
|
lint:
|
|
uv run ruff check
|
|
|
|
lintfix:
|
|
uv run ruff check --fix
|
|
|
|
format:
|
|
uv run ruff format
|
|
|
|
test:
|
|
@echo "No tests yet"
|
|
|
|
typecheck:
|
|
uv run ty check src/
|