mCaptcha/Makefile

61 lines
1.4 KiB
Makefile
Raw Normal View History

2021-05-03 14:54:03 +00:00
default: frontend
2021-04-08 10:19:55 +00:00
cargo build
2021-05-03 14:54:03 +00:00
run: frontend-dev
2021-04-08 10:19:55 +00:00
cargo run
dev-env:
cargo fetch
2021-04-09 08:51:43 +00:00
yarn install
2021-04-08 10:19:55 +00:00
docs:
cargo doc --no-deps --workspace --all-features
2021-05-03 14:54:03 +00:00
frontend-dev:
yarn build
2021-04-09 09:33:50 +00:00
2021-05-03 14:54:03 +00:00
frontend:
2021-04-09 08:51:43 +00:00
yarn build
2021-04-08 10:19:55 +00:00
test: migrate
cargo test
xml-test-coverage: migrate
cargo tarpaulin -t 1200 --out Xml
coverage: migrate
cargo tarpaulin -t 1200 --out Html
2021-05-03 14:54:03 +00:00
release: frontend
2021-04-08 10:19:55 +00:00
cargo build --release
clean:
cargo clean
yarn clean
docker-build:
docker build -t mcaptcha/mcaptcha:master -t mcaptcha/mcaptcha:latest .
docker-publish: docker-build
docker push mcaptcha/mcaptcha:master
docker push mcaptcha/mcaptcha:latest
2021-04-08 10:19:55 +00:00
migrate:
cargo run --bin tests-migrate
help:
@echo ' clean - drop builds and environments'
@echo ' coverage - build test coverage in HTML format'
@echo ' dev-env - download dependencies'
@echo ' docker-build - build docker image'
@echo ' docker-publish - build and publish docker image'
@echo ' docs - build documentation'
2021-05-04 05:00:22 +00:00
@echo ' frontend-dev - build static assets in dev mode'
@echo ' frontend - build static assets in prod mode'
2021-05-03 14:54:03 +00:00
@echo ' migrate - run database migrations'
@echo ' run - run developer instance'
@echo ' test - run unit and integration tests'
2021-05-03 14:54:03 +00:00
@echo ' xml-coverage - build test coverage in XML for upload to codecov'
2021-04-08 10:19:55 +00:00
@echo ''