Skip to content

FastAPI framework template, with some sample sqlalchemy operation usages.

License

Notifications You must be signed in to change notification settings

NCKU-CCS/fastapi-sqlalchemy

 
 

Repository files navigation

FastAPI template

A RESTful API service template built with fastapi.

Integration Build

Development

Prerequisitive

Name Version
Python 3.7
pipenv(Python module) 2018.11.26 or up

Environment setup

  1. Initialize environment variable
cp sample.env .env
  1. Initialize Python environment
make init
  1. Enter the environment and start developing
pipenv shell
  1. Start development API service
cd api/
uvicorn app:APP

The server will run at http://127.0.0.1:8000

Formatting

This project uses black and isort for formatting

make reformat

Linting

This project uses pylint and flake8 for linting

make lint

Testing

This project uses pytest and its extension(pytest-cov) for testing

Deployment

Prerequisitive

Name Version
Docker 19.03.6
docker-compose 1.17.1

Building image

docker-compose build

This will build the image with tag fastapi-sqlalchemy:latest

Deployment step

The service is deployed with docker-compose.

  1. Start containers
docker-compose up

Contribution

About

FastAPI framework template, with some sample sqlalchemy operation usages.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 92.2%
  • Makefile 5.7%
  • Dockerfile 2.1%