Bidello/Makefile
bparodi@lezzo.org 474f0f1a04 tests
2024-10-28 19:33:36 +01:00

10 lines
256 B
Makefile

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