Add makefile

This commit is contained in:
Florian Dupret 2021-11-09 14:49:14 +01:00
commit 2e7a5f1523

14
makefile Normal file
View file

@ -0,0 +1,14 @@
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-tests:
cd tests && yarn
tests:
cd tests && npx cypress open