Files
mta-sign/justfile
T

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