Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 534 Bytes

DEVELOPMENT.md

File metadata and controls

24 lines (17 loc) · 534 Bytes

BlueLeaks Explorer Dev Notes

Use the docker-compose.yaml file in the root of the project for development.

Build and run the containers with:

docker-compose up --build

If you want to rebuild the frontend in development mode so that the Vue Devtools browser extension works, when the container is up:

docker-compose exec -w /app/frontend app ./node_modules/vite/bin/vite.js build -m development

Updating dependencies

cd src
poetry update
cd frontend
npm upgrade