1
0
mirror of https://github.com/Ombi-app/Ombi.git synced 2025-03-12 04:35:27 -07:00
Ombi/makefile

17 lines
311 B
Makefile

backend:
cd src/Ombi && dotnet watch run -- --host http://*:3577
frontend:
cd src/Ombi/ClientApp && yarn start
install-frontend:
cd src/Ombi/ClientApp && yarn
install-frontend-tests:
cd tests && yarn
frontend-tests:
cd tests && npx cypress run
backend-tests:
cd src/Ombi.Core.Tests && dotnet test