Files
swift-mqtt-dewpoint/Makefile
Michael Housh 1089452212
Some checks failed
CI / Run Tests (push) Has been cancelled
feat: Minimal readme and cleans up docker files.
2024-11-14 22:17:08 -05:00

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