https://github.com/rrbarrero/fastapi_toy
Little example project for practice with FastAPI
https://github.com/rrbarrero/fastapi_toy
Last synced: 5 days ago
JSON representation
Little example project for practice with FastAPI
- Host: GitHub
- URL: https://github.com/rrbarrero/fastapi_toy
- Owner: rrbarrero
- Created: 2022-03-30T07:11:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-30T14:27:27.000Z (about 4 years ago)
- Last Synced: 2025-02-28T06:08:35.983Z (over 1 year ago)
- Language: Python
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Annotations
* Example from: https://testdriven.io/blog/fastapi-mongo/
* https://github.com/Youngestdev/async-fastapi-mongo
* docker run --name mongo-server -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=password -p 27017:27017 -d mongo:5.0.6
* docker exec -it mongo-server mongo
* https://fastapi.tiangolo.com/tutorial/security/first-steps/