Merge branch 'dev' into refactor/linting

This commit is contained in:
Tibo De Peuter 2025-03-27 09:10:00 +01:00
commit 97a5b26884
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
20 changed files with 223 additions and 95 deletions

View file

@ -19,7 +19,16 @@ See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh
# Install dependencies
npm install
# Start necessary services for development
cd ../ # Go to the root of the repository
docker compose up -d
# Start the backend
cd backend
cp .env.development.example .env.development.local
npm run dev # or npm run build && npm run start
```
### Compile and Hot-Reload for Development