mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
21 lines
222 B
Makefile
21 lines
222 B
Makefile
run:
|
|
uv run python src/main.py
|
|
|
|
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/
|