mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-03-12 04:35:27 -07:00
15 lines
240 B
Makefile
15 lines
240 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-tests:
|
|
cd tests && yarn
|
|
|
|
tests:
|
|
cd tests && npx cypress open
|