Files
mta-sign/justfile
2023-07-10 20:51:10 -04:00

11 lines
155 B
Makefile

# Run tests and linters
@default: run
# Setup project
@init:
poetry install
# Setup project
@run:
poetry run uvicorn server:app --reload --port 8000