-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AL-18 Crud #53
AL-18 Crud #53
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initially got error of no odmantic installed, and after adding to reqs.txt got 'resolution impossible' due to conflicting depedancies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking great, well done!
CRUD
fastapi-crudrouter
for automatic routes based on Pydantic modelPOST
/thing
- create new thingGET
/thing
- get all thingsGET
/thing/{id}
- get thing withid
PUT
/thing/{id}
- update thingDELETE
/thing/{id}
- delete thingDELETE
/thing
- delete all thingsFastAPI
motor
backend with custom patch of fastapi-crudrouterapi
admin.py
invoicingtestapi.py
basic (unauthenticated) api for isolated testingEdl
andClip
modelsmisc
Dockerfile
order updatesDB_NAME
as environment variable along withDB_URL
Plus many small bugfixes