Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonybenoy/motor_fastapi
https://github.com/tonybenoy/motor_fastapi
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tonybenoy/motor_fastapi
- Owner: tonybenoy
- Created: 2021-07-13T15:42:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T22:31:51.000Z (about 1 year ago)
- Last Synced: 2024-05-02T02:19:45.044Z (6 months ago)
- Language: Python
- Size: 27.3 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MongoMotorFastapi
## How to run server
I have the images tagged to my local registry so run a local registry as shown below. In case you don't want to run your own registry do change the image name to a non registry tag.
`docker run -d -p 5000:5000 --name registry registry:2`
## To run the server
Create .env with MONGODB_URL
### Using docker
```
docker-compose build
docker-compose push
docker-compose up
```### Without Docker
```
python -m venv venv
source venv/bin/activate
pip install -r requirement.txt
gunicorn -b 0.0.0.0:8000 src.main:app -w 1 -k uvicorn.workers.UvicornWorker --preload
```Access the server [here](http://127.0.0.1:8000)