This is a start on a migration of the book server to FastAPI - Lets use this Issue to discuss. I want to polish up this first bit to set the stage for the rest of what needs to come. So getting this as "right" as we can is the goal. You should be able to run this yourself with the following: 1. clone this repo 2. Install poetry 3. run `poetry install` to install all of the dependencies (you can either make your own virtualenv or let Poetry) 4. run the command `uvicorn app.main:app --reload` 5. Navigate to http://localhost:8000/docs You can then exercise the API call for logger/bookevent using the autogenerated documentation. Next up getting a unittest set up for this first endpoint. Tagging @bjones1
This is a start on a migration of the book server to FastAPI - Lets use this Issue to discuss.
I want to polish up this first bit to set the stage for the rest of what needs to come. So getting this as "right" as we can is the goal.
You should be able to run this yourself with the following:
poetry installto install all of the dependencies (you can either make your own virtualenv or let Poetry)uvicorn app.main:app --reloadYou can then exercise the API call for logger/bookevent using the autogenerated documentation.
Next up getting a unittest set up for this first endpoint.
Tagging @bjones1