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

https://github.com/troyan-dy/fastapi-template-repository

Template for simple FastAPI service
https://github.com/troyan-dy/fastapi-template-repository

Last synced: about 1 month ago
JSON representation

Template for simple FastAPI service

Awesome Lists containing this project

README

        

# FastAPI-template-repository

## Dependencies
- docker-compose
- python 3.9

## Commands
### Install
- `make install`

### Run tests
- `make test`
### Linting
- `make lint`

### Formatting
- `make format`

### Start in docker
- `make start`
- `make stop`

## Usage

- Curl
```bash
curl -X GET http://0.0.0.0:8000/ping
```

- Response

```bash
pong
```