Cookiecutter template for creating a backend using FastAPI and SQLAlchemy Async ORM.
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 [you@example.com]:
github_username [your-username]:
...
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 git@github.com:<MY_USERNAME>/<MY-REPO-SLUG>.git
git push -u origin master