2021-10-04 21:21:10 +05:30
|
|
|
default: frontend ## Debug build
|
2021-10-14 14:43:22 +05:30
|
|
|
cargo build
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
clean: ## Clean all build artifacts and dependencies
|
|
|
|
@cargo clean
|
|
|
|
@yarn cache clean
|
|
|
|
@-rm -rf browser/pkg
|
|
|
|
@-rm ./src/cache_buster_data.json
|
|
|
|
@-rm -rf ./static/cache/bundle
|
|
|
|
@-rm -rf ./assets
|
|
|
|
|
2023-01-24 19:02:07 +05:30
|
|
|
check: ## Check for syntax errors on all workspaces
|
|
|
|
cargo check --workspace --tests --all-features
|
|
|
|
|
2021-10-04 21:21:10 +05:30
|
|
|
coverage: migrate ## Generate HTML code coverage
|
|
|
|
cargo tarpaulin -t 1200 --out Html
|
|
|
|
|
|
|
|
dev-env: ## Download development dependencies
|
|
|
|
cargo fetch
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
doc: ## Prepare documentation
|
|
|
|
cargo doc --no-deps --workspace --all-features
|
|
|
|
|
|
|
|
docker: ## Build docker images
|
2021-10-14 21:50:45 +05:30
|
|
|
docker build -t mcaptcha/survey:master -t mcaptcha/survey:latest .
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
docker-publish: docker ## Build and publish docker images
|
2021-10-14 21:50:45 +05:30
|
|
|
docker push mcaptcha/survey:master
|
|
|
|
docker push mcaptcha/survey:latest
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
frontend: ## Build frontend assets
|
|
|
|
@yarn install
|
|
|
|
@-rm -rf ./static/cache/bundle/
|
2021-10-14 14:43:22 +05:30
|
|
|
@-mkdir -p ./static/cache/bundle/css/
|
2021-10-13 14:11:39 +05:30
|
|
|
@yarn sass
|
2021-10-12 14:02:34 +05:30
|
|
|
@yarn build
|
|
|
|
@./scripts/bundle.sh
|
2021-10-04 21:21:10 +05:30
|
|
|
|
2021-10-10 19:23:48 +05:30
|
|
|
lint: ## Lint codebase
|
|
|
|
cargo fmt -v --all -- --emit files
|
|
|
|
cargo clippy --workspace --tests --all-features
|
2021-10-14 20:02:54 +05:30
|
|
|
yarn lint
|
2021-10-10 19:23:48 +05:30
|
|
|
|
2021-10-04 21:21:10 +05:30
|
|
|
migrate: ## Run database migrations
|
|
|
|
cargo run --bin tests-migrate
|
|
|
|
|
|
|
|
release: frontend ## Release build
|
|
|
|
cargo build --release
|
|
|
|
|
|
|
|
run: default ## Run debug build
|
|
|
|
cargo run
|
|
|
|
|
2023-01-26 20:54:40 +05:30
|
|
|
sqlx-offline-data: ## prepare sqlx offline data
|
|
|
|
cargo sqlx prepare \
|
|
|
|
--database-url=${DATABASE_URL} -- \
|
|
|
|
--all-features \
|
|
|
|
--bin survey
|
|
|
|
|
2021-10-04 21:21:10 +05:30
|
|
|
test: frontend ## Run tests
|
|
|
|
echo 'static/' && tree static || true
|
|
|
|
echo 'tree/' && tree assets || true
|
|
|
|
cargo test --all-features --no-fail-fast
|
|
|
|
|
|
|
|
xml-test-coverage: migrate ## Generate cobertura.xml test coverage
|
|
|
|
cargo tarpaulin -t 1200 --out Xml
|
|
|
|
|
|
|
|
help: ## Prints help for targets with comments
|
|
|
|
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|