Bidello/Makefile

13 lines
320 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:
2024-11-06 15:32:32 +01:00
cd src && dotnet build --no-restore
2024-10-26 12:15:44 +02:00
run:
cd entrypoint && dotnet run -- --user ${USER} --password ${PASSWORD} -H ${HOST}
test:
2024-10-28 19:33:36 +01:00
cd tests && dotnet test
2024-11-06 15:32:32 +01:00
restore:
dotnet restore && cd src && dotnet build