mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-29 14:57:03 +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>
35 lines
876 B
Makefile
35 lines
876 B
Makefile
.DEFAULT_TARGET=help
|
|
|
|
## help: Display list of commands
|
|
.PHONY: help
|
|
help:
|
|
@echo "Available commands:"
|
|
@sed -n 's|^##||p' $(MAKEFILE_LIST) | column -t -s ':' | sed -e 's|^| |'
|
|
|
|
|
|
## dev: Start development environment
|
|
.PHONY: dev
|
|
dev:
|
|
DOCKER_BUILDKIT=1 docker compose -f docker-compose.dev.yml up --build
|
|
|
|
dev-build:
|
|
DOCKER_BUILDKIT=1 docker compose -f docker-compose.dev.yml build --no-cache
|
|
DOCKER_BUILDKIT=1 docker compose -f docker-compose.dev.yml up
|
|
|
|
## prod: Build and start production environment
|
|
.PHONY: prod
|
|
prod:
|
|
docker compose -f docker-compose.yml up --build
|
|
|
|
## front: Build and start frontend
|
|
.PHONY: front
|
|
front:
|
|
cd frontend && yarn && yarn build && yarn start
|
|
|
|
## test: Run tests
|
|
.PHONY: test
|
|
test:
|
|
# Ensure dependencies are installed with dev and test extras
|
|
# poetry install --with dev,test && brew install tesseract pandoc libmagic
|
|
./.run_tests.sh
|