Skip to content

Commit

Permalink
build: update makefile targets
Browse files Browse the repository at this point in the history
  • Loading branch information
sn1f3rt committed Dec 15, 2024
1 parent 1a1983e commit 2e9c67f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ activate:
source .venv/bin/activate

install:
uv sync --all-extras --no-dev
uv sync --no-dev

install-dev:
uv sync --all-extras
uv sync --extra dev

dev:
uv run launcher.py
install-extras:
uv sync --all-extras --no-dev

prod:
hypercorn --bind 0.0.0.0:13030 --certfile cert.pem --keyfile key.pem launcher:app
run:
uv run launcher.py

format:
ruff check --select I --fix .
ruff format .

.PHONY: env rmenv activate install install-dev dev prod format
.DEFAULT_GOAL := dev
.PHONY: env rmenv activate install install-dev run format
.DEFAULT_GOAL := run

0 comments on commit 2e9c67f

Please sign in to comment.