Skip to content

imraanparker/fastapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

A sample API application to show off FastAPI.

Requirements

  • Python 3.8
  • Docker
  • Heroku CLI

Installation

Development

Create a virtual environment

 python3 -m venv /path/to/env

Activate the environment and install the requirements in the app folder

/path/to/env/bin/pip install -U -r requirements.txt

Run the development web server in the app folder

uvicorn main:app --reload

Production

A docker container is deployed to Heroku for production use. Run the script to deploy to production. The assumption is that you have Docker and the Heroku CLI installed. You will need an account on Heroku in order to deploy. You might need to adapt the deploy script with your application name.

./deploy.sh

Accessing the API

You can access the api via a browser and use the built-in Swagger interface to interact with the API.

When running in development the URL is

http://localhost:8000/docs

The production URL is

https://<your_app_name>.herokuapp.com/docs

Continuous Integration

All API services are tested. Last Build

Tests

To run the tests locally, simply run

pytest

About

A sample API application to show off FastAPI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published