Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/src/commit/f2e6b5ca8202e504f5576806102cceb9b55680d1/makefile You should set ROOT_URL correctly, otherwise the web may not work correctly.
Ombi/makefile

17 lines
311 B

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