mCaptcha/Makefile

97 lines
2.6 KiB
Makefile
Raw Normal View History

BUNDLE = static/cache/bundle
OPENAPI = docs/openapi
CLEAN_UP = $(BUNDLE) src/cache_buster_data.json assets
2021-12-16 15:55:46 +05:30
define frontend_env ## install frontend deps
yarn install
cd docs/openapi && yarn install
endef
2021-11-29 17:32:33 +05:30
default: frontend ## Build app in debug mode
cargo build
2021-04-08 15:49:55 +05:30
2022-05-08 20:02:48 +05:30
check: ## Check for syntax errors on all workspaces
cargo check --workspace --tests --all-features
cd db/db-migrations && cargo check --tests --all-features
cd db/db-sqlx-postgres &&\
DATABASE_URL=${POSTGRES_DATABASE_URL}\
cargo check
cd db/db-core/ && cargo check
clean: ## Delete build artifacts
2021-07-15 15:27:01 +05:30
@cargo clean
@yarn cache clean
@-rm $(CLEAN_UP)
2021-07-07 21:10:15 +05:30
coverage: migrate ## Generate code coverage report in HTML format
2021-07-07 21:10:15 +05:30
cargo tarpaulin -t 1200 --out Html
2021-04-08 15:49:55 +05:30
doc: ## Generate documentation
#yarn doc
2021-04-08 15:49:55 +05:30
cargo doc --no-deps --workspace --all-features
2021-04-09 15:03:50 +05:30
docker: ## Build Docker image
2021-07-07 21:10:15 +05:30
docker build -t mcaptcha/mcaptcha:master -t mcaptcha/mcaptcha:latest .
docker-publish: docker ## Build and publish Docker image
2021-07-07 21:10:15 +05:30
docker push mcaptcha/mcaptcha:master
docker push mcaptcha/mcaptcha:latest
env: ## Setup development environtment
cargo fetch
2021-12-16 15:55:46 +05:30
$(call frontend_env)
frontend-env: ## Install frontend deps
$(call frontend_env)
2021-12-16 15:55:46 +05:30
frontend: ## Build frontend
$(call frontend_env)
cd $(OPENAPI) && yarn build
yarn install
@-rm -rf $(BUNDLE)
@-mkdir $(BUNDLE)
2021-04-09 14:21:43 +05:30
yarn build
2022-05-07 19:42:49 +05:30
@yarn run sass -s \
compressed templates/main.scss \
./static/cache/bundle/css/main.css
2022-05-07 19:42:49 +05:30
@yarn run sass -s \
compressed templates/mobile.scss \
./static/cache/bundle/css/mobile.css
2022-05-07 19:42:49 +05:30
@yarn run sass -s \
compressed templates/widget/main.scss \
./static/cache/bundle/css/widget.css
2021-11-30 18:45:02 +05:30
@./scripts/librejs.sh
@./scripts/cachebust.sh
2021-04-08 15:49:55 +05:30
frontend-test: ## Run frontend tests
cd $(OPENAPI)&& yarn test
yarn test
2021-04-08 15:49:55 +05:30
lint: ## Lint codebase
2021-10-08 15:55:53 +05:30
cargo fmt -v --all -- --emit files
cargo clippy --workspace --tests --all-features
yarn lint
cd $(OPENAPI)&& yarn test
2021-10-08 15:55:53 +05:30
migrate: ## Run database migrations
cd db/db-migrations/ && cargo run
2021-04-08 15:49:55 +05:30
release: frontend ## Build app with release optimizations
2021-04-08 15:49:55 +05:30
cargo build --release
2021-11-29 17:32:33 +05:30
run: frontend ## Run app in debug mode
cargo run
test: frontend-test frontend ## Run all available tests
2022-05-11 13:08:11 +05:30
cd db/db-sqlx-postgres &&\
DATABASE_URL=${POSTGRES_DATABASE_URL}\
cargo test --no-fail-fast
./scripts/tests.sh
# cargo test --all-features --no-fail-fast
xml-test-coverage: migrate ## Generate code coverage report in XML format
2021-07-07 21:10:15 +05:30
cargo tarpaulin -t 1200 --out Xml
2021-04-08 15:49:55 +05:30
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}'