Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 373 Bytes

developing.md

File metadata and controls

27 lines (23 loc) · 373 Bytes

Developing

Run Fleet Manager natively on your system

cd ./frontend
npm run install
npm run build
cd ../backend
npm install
npm run build
npm start

Run compiler in build mode so that new changes are automatically compiled

Frontend

cd packages/frontend
npm run watch

Backend

cd packages/backend
npm run watch
npm start