11 lines
244 B
Makefile
11 lines
244 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:
|
||
|
dotnet test
|