mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
380cf82706
# Description # Testing backend ## Docker setup 1. Copy `.env.example` to `.env`. Some env variables were added : EMBEDDING_DIM 2. Apply supabase migratrions : ```sh supabase stop supabase db reset supabase start ``` 3. Start backend containers ``` make dev ``` ## Local setup You can also run backend without docker. 1. Install [`rye`](https://rye.astral.sh/guide/installation/). Choose the managed python version and set the version to 3.11 2. Run the following: ``` cd quivr/backend rye sync ``` 3. Source `.venv` virtual env : `source .venv/bin/activate` 4. Run the backend, make sure you are running redis and supabase API: ``` LOG_LEVEL=debug uvicorn quivr_api.main:app --log-level debug --reload --host 0.0.0.0 --port 5050 --workers 1 ``` Worker: ``` LOG_LEVEL=debug celery -A quivr_worker.celery_worker worker -l info -E --concurrency 1 ``` Notifier: ``` LOG_LEVEL=debug python worker/quivr_worker/celery_monitor.py ``` --------- Co-authored-by: chloedia <chloedaems0@gmail.com> Co-authored-by: aminediro <aminedirhoussi1@gmail.com> Co-authored-by: Antoine Dewez <44063631+Zewed@users.noreply.github.com> Co-authored-by: Chloé Daems <73901882+chloedia@users.noreply.github.com> Co-authored-by: Zewed <dewez.antoine2@gmail.com>
116 lines
2.8 KiB
YAML
116 lines
2.8 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
frontend:
|
|
image: quivr-frontend-prebuilt
|
|
pull_policy: never
|
|
build:
|
|
context: frontend
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- NEXT_PUBLIC_ENV=local
|
|
- NEXT_PUBLIC_BACKEND_URL=${NEXT_PUBLIC_BACKEND_URL}
|
|
- NEXT_PUBLIC_SUPABASE_URL=${NEXT_PUBLIC_SUPABASE_URL}
|
|
- NEXT_PUBLIC_SUPABASE_ANON_KEY=${NEXT_PUBLIC_SUPABASE_ANON_KEY}
|
|
- NEXT_PUBLIC_CMS_URL=${NEXT_PUBLIC_CMS_URL}
|
|
- NEXT_PUBLIC_FRONTEND_URL=${NEXT_PUBLIC_FRONTEND_URL}
|
|
- NEXT_PUBLIC_AUTH_MODES=${NEXT_PUBLIC_AUTH_MODES}
|
|
container_name: web
|
|
depends_on:
|
|
- backend-api
|
|
restart: always
|
|
ports:
|
|
- 3000:3000
|
|
|
|
backend-api:
|
|
image: quivr-backend-api:latest
|
|
pull_policy: if_not_present
|
|
env_file:
|
|
- .env
|
|
build:
|
|
context: backend
|
|
dockerfile: Dockerfile
|
|
container_name: backend-api
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
healthcheck:
|
|
test: [ "CMD", "curl", "http://localhost:5050/healthz" ]
|
|
command: >
|
|
/bin/bash -c "python -m uvicorn quivr_api.main:app --host 0.0.0.0 --log-level info --reload --port 5050 --loop uvloop"
|
|
restart: always
|
|
ports:
|
|
- 5050:5050
|
|
|
|
worker:
|
|
pull_policy: if_not_present
|
|
image: quivr-backend-api:latest
|
|
env_file:
|
|
- .env
|
|
container_name: worker
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
command: >
|
|
/bin/bash -c "python -m celery -A quivr_worker.celery_worker worker -l info"
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
|
|
notifier:
|
|
pull_policy: never
|
|
image: quivr-backend-api:latest
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
container_name: notifier
|
|
command: >
|
|
/bin/bash -c "python /app/worker/quivr_worker/celery_monitor.py"
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
- worker
|
|
|
|
beat:
|
|
image: quivr-backend-api:latest
|
|
pull_policy: if_not_present
|
|
env_file:
|
|
- .env
|
|
container_name: beat
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
command: >
|
|
/bin/bash -c "python -m celery -A quivr_worker.celery_worker beat -l info"
|
|
restart: always
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
flower:
|
|
image: quivr-backend-api:latest
|
|
pull_policy: if_not_present
|
|
env_file:
|
|
- .env
|
|
container_name: flower
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
command: >
|
|
/bin/bash -c "python -m celery -A quivr_worker.celery_worker flower -l info --port=5555"
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
- worker
|
|
- beat
|
|
ports:
|
|
- 5555:5555
|
|
|
|
redis:
|
|
image: redis:latest@sha256:a7cee7c8178ff9b5297cb109e6240f5072cdaaafd775ce6b586c3c704b06458e
|
|
container_name: redis
|
|
restart: always
|
|
ports:
|
|
- 6379:6379
|
|
|
|
networks:
|
|
quivr-network:
|
|
driver: bridge
|