- β‘ FastAPI for the Python backend API.
- π§° SQLModel for the Python SQL database interactions (ORM).
- π Pydantic, used by FastAPI, for the data validation and settings management.
- πΎ PostgreSQL as the SQL database.
- π React for the frontend.
- π§© Built into the backend application and served by FastAPI on the same domain as the API.
- π Using TypeScript, hooks, Vite, and other parts of a modern frontend stack.
- π¨ Tailwind CSS and shadcn/ui for the frontend components.
- π€ An automatically generated frontend client.
- π§ͺ Playwright for End-to-End testing.
- π¦ Dark mode support.
- βοΈ FastAPI Cloud for deployment.
- π Docker Compose for local services and self-hosted deployment.
- π Traefik as a reverse proxy with automatic HTTPS.
- π Secure password hashing by default.
- π JWT (JSON Web Token) authentication.
- π« Email based password recovery.
- π¬ Mailcatcher for local email testing during development.
- β Tests with Pytest.
- π’ Deployment with FastAPI Cloud or self-hosting with Docker Compose and Traefik.
- π CI (continuous integration) and CD (continuous deployment) based on GitHub Actions.
You can just fork or clone this repository and use it as is.
β¨ It just works. β¨
If you want to have a private repository, GitHub won't allow you to simply fork it as it doesn't allow changing the visibility of forks.
But you can do the following:
- Create a new GitHub repo, for example
my-full-stack. - Clone this repository manually, set the name with the name of the project you want to use, for example
my-full-stack:
git clone git@github.com:fastapi/full-stack-fastapi-template.git my-full-stack- Enter into the new directory:
cd my-full-stack- Set the new origin to your new repository, copy it from the GitHub interface, for example:
git remote set-url origin git@github.com:octocat/my-full-stack.git- Add this repo as another "remote" to allow you to get updates later:
git remote add upstream git@github.com:fastapi/full-stack-fastapi-template.git- Push the code to your new repository:
git push -u origin masterAfter cloning the repository, and after doing changes, you might want to get the latest changes from this original template.
- Make sure you added the original repository as a remote, you can check it with:
git remote -v
origin git@github.com:octocat/my-full-stack.git (fetch)
origin git@github.com:octocat/my-full-stack.git (push)
upstream git@github.com:fastapi/full-stack-fastapi-template.git (fetch)
upstream git@github.com:fastapi/full-stack-fastapi-template.git (push)- Pull the latest changes without merging:
git pull --no-commit upstream masterThis will download the latest changes from this template without committing them, that way you can check everything is right before committing.
-
If there are conflicts, solve them in your editor.
-
Once you are done, commit the changes:
git merge --continueYou can update the local settings in the .env file. Before deploying, configure the environment variables and secrets described in the FastAPI Cloud deployment guide or the Docker Compose deployment guide. Never deploy with the default changethis values.
Some environment variables in the .env file have a default value of changethis.
You have to change them with a secret key, to generate secret keys you can run the following command:
python -c "import secrets; print(secrets.token_urlsafe(32))"Copy the content and use that as password / secret key. And run that again to generate another secure key.
Backend docs: backend/README.md.
Frontend docs: frontend/README.md.
Deployment docs: deployment.md.
Docker Compose deployment: deployment-docker-compose.md.
General development docs: development.md.
This includes the local FastAPI and Vite workflow, Docker Compose services, .env configuration, and more.
Check the file release-notes.md.
The Full Stack FastAPI Template is licensed under the terms of the MIT license.




