23 lines
464 B
Makefile
Executable File
23 lines
464 B
Makefile
Executable File
|
|
bootstrap-env:
|
|
@cp Bootstrap/dewPoint-env-example .dewPoint-env
|
|
|
|
bootstrap-topics:
|
|
@cp Bootstrap/topics-example .topics
|
|
|
|
bootstrap: bootstrap-env bootstrap-topics
|
|
|
|
build:
|
|
@swift build -Xswiftc -strict-concurrency=complete
|
|
|
|
clean:
|
|
rm -rf .build
|
|
|
|
run:
|
|
@swift run dewpoint-controller
|
|
|
|
test-docker:
|
|
@docker compose --file docker/docker-compose-test.yaml \
|
|
run --build --remove-orphans -i --rm test
|
|
@docker compose --file docker/docker-compose-test.yaml down
|