mirror of
https://github.com/arc53/DocsGPT.git
synced 2026-02-17 11:42:22 +00:00
585 B
585 B
Welcome to DocsGPT Devcontainer
Welcome to the DocsGPT development environment! This guide will help you get started quickly.
Starting Services
To run DocsGPT, you need to start three main services: Flask (backend), Celery (task queue), and Vite (frontend). Here are the commands to start each service within the devcontainer:
Vite (Frontend)
cd frontend
npm run dev -- --host
Flask (Backend)
flask --app application/app.py run --host=0.0.0.0 --port=7091
Celery (Task Queue)
celery -A application.app.celery worker -l INFO