mirror of
https://github.com/g0ldyy/comet.git
synced 2026-01-12 01:16:12 +01:00
14 lines
361 B
Makefile
14 lines
361 B
Makefile
PHONY: run install sort
|
|
|
|
|
|
install:
|
|
@poetry install --no-root --group dev
|
|
|
|
run:
|
|
@echo Visit http://127.0.0.1:8000/docs for the API Documentation
|
|
@echo Visit http://127.0.0.1:8000/manifest for the Stremio Manifest
|
|
@poetry run uvicorn comet.main:app --reload --reload-dir comet --reload-include "*.py" --reload-exclude "*.log"
|
|
|
|
sort:
|
|
@poetry run isort comet
|