Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 884 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 884 Bytes

Cookiecutter FastAPI Async

Cookiecutter template for creating a backend using FastAPI and SQLAlchemy Async ORM.

Install

First, you need to Install cookiecutter

pip install cookiecutter

Generate a Python package project:

cookiecutter https://github.com/anancarv/cookiecutter-fastapi-async.git
full_name [Your Name]:
email [[email protected]]:
github_username [your-username]:
...

Create a GitHub Repo

Go to your GitHub account and create a new repo (e.g test-fastapi) that matches the project_slug from your previous answers. Back to your CLI, you can do the following in the root of your generated project:

git add .
git commit -m "Initial skeleton."
git remote add origin [email protected]:<MY_USERNAME>/<MY-REPO-SLUG>.git
git push -u origin master