Bidello/Makefile

11 lines
244 B
Makefile
Raw Normal View History

2024-10-26 12:15:44 +02:00
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:
dotnet test