Bidello/Makefile
bparodi@lezzo.org b146b64fcf bump pentole
2024-12-12 11:35:55 +01:00

15 lines
402 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
clean:
rm src/bin src/obj tests/bin tests/obj entrypoint/bin entrypoint/obj -fr