/fastapi-prisma

A template that starts up a FastAPI server that uses Prisma to store data.

Primary LanguagePythonMIT LicenseMIT

FastAPI Prisma Template

A template that starts up a FastAPI server that uses Prisma to store data.

✨ Features

  • FastAPI
  • Prisma
  • Python 3

💁‍♀️ How to use

  • Clone locally and install packages with Pip using pip install -r requirements.txt or Poetry using poetry install
  • Run locally using poetry run uvicorn app.main:app --reload

📝 Notes

  • To learn about how to use FastAPI with most of its features, you can visit the FastAPI Documentation.
  • FastAPI provides automatic documentation to call and test your API directly from the browser. You can access it at /docs with Swagger or at /redoc with Redoc.
  • This template was designed for projects that will grow quickly. Therefore, this template provides a file structure based on the example from FastAPI for Bigger Applications.
  • To learn more about how to use Prisma in a Python project, you can visit the Prisma Client Python Documentation.