feat: adding openapi spect generation to the frontend client aas well as to fast api. Broke API out into different routes

This commit is contained in:
lucas.oskorep
2023-07-17 02:07:41 -04:00
parent add28cafc6
commit 4a20152ff5
45 changed files with 3379 additions and 206 deletions

View File

@@ -7,4 +7,13 @@
# Setup project
@run:
poetry run uvicorn server:app --reload --port 8000
poetry run python main.py
# Lint project with ruff linter
@lint:
poetry run ruff .
# Auto fix lint with ruff
@lint-fix:
poetry run ruff . --fix