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
- Host: GitHub
- URL: https://github.com/satendrakumar/fastapi-service-template
- Owner: satendrakumar
- Created: 2025-04-13T10:39:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-13T10:44:48.000Z (about 1 year ago)
- Last Synced: 2025-04-13T11:36:00.532Z (about 1 year ago)
- Topics: docker, fastapi, pip, python, rest-api
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```