Bidello/Makefile
bparodi@lezzo.org 365cbdf137 tests
2024-11-06 15:32:32 +01:00

12 lines
320 B
Makefile

USER := $(shell cat user.secret)
PASSWORD := $(shell cat password.secret)
HOST := $(shell cat host.secret)
build:
cd src && dotnet build --no-restore
run:
cd entrypoint && dotnet run -- --user ${USER} --password ${PASSWORD} -H ${HOST}
test:
cd tests && dotnet test
restore:
dotnet restore && cd src && dotnet build