quivr/frontend/app
Stan Girard 380cf82706
feat: quivr core 0.1 (#2970)
# 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>
2024-09-02 10:20:53 +02:00
..
(auth)/login feat: Add Azure login support (#3071) 2024-08-22 12:57:43 -07:00
(home) fix(frontend): dark mode issues (#2382) 2024-03-27 14:52:42 -07:00
assistants fix(frontend): remove warning in frontend (#2896) 2024-07-22 17:42:45 +02:00
chat feat: quivr core 0.1 (#2970) 2024-09-02 10:20:53 +02:00
invitation/[brainId] fix(frontend): remove warning in frontend (#2896) 2024-07-22 17:42:45 +02:00
search feat(frontend): interaction with brain items (#3106) 2024-08-28 02:30:48 +02:00
studio feat(frontend): interaction with brain items (#3106) 2024-08-28 02:30:48 +02:00
user feat(frontend): show or hide tokens relative stuff (#3017) 2024-08-19 10:22:56 -07:00
App.module.scss feat(frontend): helpbox (#3007) 2024-08-14 19:31:30 +02:00
App.tsx feat(frontend): helpbox (#3007) 2024-08-14 19:31:30 +02:00
colors.css fix(frontend): talk with models (#2981) 2024-08-08 16:29:42 +02:00
global-error.jsx fix(sentry): Refactor GlobalError component to use arrow function syntax (#2252) 2024-02-23 17:32:29 -08:00
globals.css feat(frontend): brain snippet selector (#3038) 2024-08-21 17:23:59 +02:00
layout.module.scss feat(frontend): dark mode (#2369) 2024-03-21 00:01:21 -07:00
layout.tsx fix(frontend): remove intercom on thread page of mobile (#3108) 2024-08-28 11:35:52 +02:00
not-found.tsx feat(frontend): 404 redirection (#2309) 2024-03-06 11:53:51 -08:00