You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Clone
git clone https://github.com/lalitsharma250/quillflow.git
cd quillflow
# Configure
cp .env.example .env
# Edit .env — set your LLM API key and JWT secret# Start everything
docker compose -f docker/docker-compose.yml --env-file .env up --build -d
# Wait for services (check status)
docker compose -f docker/docker-compose.yml ps
# Create first admin user
docker compose -f docker/docker-compose.yml exec api python scripts/docker_seed.py
# Open the app# http://localhost:3000
Default Credentials
Email: admin@quillflow.local
Password: Admin@123
API Key: (shown during seed script)
One-Command setup
# Stop all services
docker compose -f docker/docker-compose.yml down
# Stop and delete all data (fresh start)
docker compose -f docker/docker-compose.yml down -v
# Restart
docker compose -f docker/docker-compose.yml --env-file .env up -d
💻 Local Development (Without Docker)
# Create virtual environment
python -m venv .venv
.venv\Scripts\activate # Windows# source .venv/bin/activate # Mac/Linux# Install dependencies
pip install -e ".[dev]"# Start infrastructure only (Postgres, Redis, Qdrant)
docker compose -f docker/docker-compose.yml up -d postgres redis qdrant
# Run database migrations
alembic upgrade head
# Setup initial admin user
python -m scripts.setup_dev
# Start API server (terminal 1)
uvicorn app.main:create_app --factory --reload --host 0.0.0.0 --port 8000
# Start background worker (terminal 2)
arq app.workers.settings.WorkerSettings
# Start frontend (terminal 3)cd frontend
npm install
npm run dev
# Open http://localhost:3000
Copyright (c) 2026 lalitsharma250
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
About
Production RAG backend — document ingestion, hybrid retrieval + reranking, and citation-grounded answers over your private knowledge base. FastAPI · LangGraph · Qdrant.