guillaumemaka / fastapi_sample

A Sample FastAPI app
0 stars 0 forks source link

Sample FastAPI app

This is a sample FastAPI app that can be used as a template for other projects.

Requirements

Installation

Install virtualenv

pip install virtualenv

Create a virtual environment

python -m virtualenv venv

Install poetry

pip install poetry

Install dependencies

poetry install

Running the app

make startserver

Running tests

make test