An open API service indexing awesome lists of open source software.

https://github.com/satendrakumar/fastapi-service-template

FastAPI template to start with restful service
https://github.com/satendrakumar/fastapi-service-template

docker fastapi pip python rest-api

Last synced: about 1 month ago
JSON representation

FastAPI template to start with restful service

Awesome Lists containing this project

README

          

# fastapi-service-template

### Install and run on Local:
```shell
pip install -r requirements.txt
python main.py
```

### Docker build and run:
```shell
docker build -t rest-service:v1 .
docker run -d --name rest-sercvice -p 8000:8000 rest-service:v1
```