Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.06 KB

File metadata and controls

44 lines (35 loc) · 1.06 KB

Quill API

FastAPI backend for the Quill app.

🌐 Live API

Live Demo API Docs Frontend Repo

Setup & Run

1. Install dependencies

pip install -r requirements.txt

2. Configure environment

cp .env.example .env

3. Run the server

uvicorn main:app --reload

4. View API docs


Database

Uses PostgreSQL via SQLAlchemy. Tables are auto-created on startup.

For production, use Alembic for migrations:

pip install alembic
alembic init migrations
alembic revision --autogenerate -m "initial"
alembic upgrade head

Noteapp-backend