mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2024-11-22 17:35:51 +03:00
213 lines
5.2 KiB
Makefile
213 lines
5.2 KiB
Makefile
BUNDLE = static/cache/bundle
|
|
OPENAPI = docs/openapi
|
|
CLEAN_UP = $(BUNDLE) src/cache_buster_data.json assets
|
|
|
|
define deploy_dependencies ## deploy dependencies
|
|
@-docker create --name ${db} \
|
|
-e POSTGRES_PASSWORD=password \
|
|
-p 5432:5432 \
|
|
postgres
|
|
@-docker create \
|
|
-p 3306:3306 \
|
|
--name ${mdb} \
|
|
--env MARIADB_USER=maria \
|
|
--env MARIADB_PASSWORD=password \
|
|
--env MARIADB_ROOT_PASSWORD=password \
|
|
--env MARIADB_DATABASE=maria \
|
|
mariadb:latest
|
|
@-docker create \
|
|
-p 6379:6379 \
|
|
--name mcaptcha-cache \
|
|
mcaptcha/cache:latest
|
|
docker start ${db}
|
|
docker start ${mdb}
|
|
docker start mcaptcha-cache
|
|
endef
|
|
|
|
define run_migrations ## run database migrations
|
|
cd db/db-migrations/ && cargo run
|
|
endef
|
|
|
|
define run_dev_migrations ## run database migrations
|
|
cd db/db-sqlx-maria/ && \
|
|
DATABASE_URL=${MARIA_DATABASE_URL} sqlx migrate run
|
|
cd db/db-sqlx-postgres/ && \
|
|
DATABASE_URL=${POSTGRES_DATABASE_URL} sqlx migrate run
|
|
endef
|
|
|
|
define frontend_env ## install frontend deps
|
|
yarn install
|
|
cd docs/openapi && yarn install
|
|
endef
|
|
|
|
define cache_bust ## run cache_busting program
|
|
cd utils/cache-bust && cargo run
|
|
endef
|
|
|
|
|
|
define test_frontend ## run frontend tests
|
|
cd $(OPENAPI)&& yarn test
|
|
yarn test
|
|
endef
|
|
|
|
define test_db_sqlx_postgres
|
|
cd db/db-sqlx-postgres &&\
|
|
DATABASE_URL=${POSTGRES_DATABASE_URL}\
|
|
cargo test --no-fail-fast
|
|
endef
|
|
|
|
define test_db_sqlx_maria
|
|
cd db/db-sqlx-maria &&\
|
|
DATABASE_URL=${MARIA_DATABASE_URL}\
|
|
cargo test --no-fail-fast
|
|
endef
|
|
|
|
define test_core
|
|
cargo test --no-fail-fast
|
|
endef
|
|
|
|
|
|
|
|
default: frontend ## Build app in debug mode
|
|
$(call cache_bust)
|
|
cargo build
|
|
|
|
check: ## Check for syntax errors on all workspaces
|
|
cargo check --workspace --tests --all-features
|
|
cd utils/cache-bust && cargo check --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-sqlx-maria &&\
|
|
DATABASE_URL=${MARIA_DATABASE_URL}\
|
|
cargo check
|
|
cd db/db-core/ && cargo check
|
|
|
|
cache-bust: ## Run cache buster on static assets
|
|
$(call cache_bust)
|
|
|
|
clean: ## Delete build artifacts
|
|
@cargo clean
|
|
@yarn cache clean
|
|
@-rm $(CLEAN_UP)
|
|
|
|
coverage: migrate ## Generate code coverage report in HTML format
|
|
$(call cache_bust)
|
|
cargo tarpaulin -t 1200 --out Html
|
|
|
|
doc: ## Generate documentation
|
|
#yarn doc
|
|
cargo doc --no-deps --workspace --all-features
|
|
|
|
docker: ## Build Docker image
|
|
docker build -t mcaptcha/mcaptcha:master -t mcaptcha/mcaptcha:latest .
|
|
|
|
docker-publish: docker ## Build and publish Docker image
|
|
docker push mcaptcha/mcaptcha:master
|
|
docker push mcaptcha/mcaptcha:latest
|
|
|
|
env: ## Setup development environtment
|
|
cargo fetch
|
|
$(call frontend_env)
|
|
|
|
env.db: ## Deploy dependencies
|
|
$(call deploy_dependencies)
|
|
sleep 5
|
|
$(call run_migrations)
|
|
|
|
env.db.recreate: ## Deploy dependencies from scratch
|
|
@-docker rm -f ${db}
|
|
@-docker rm -f ${mdb}
|
|
@-docker rm -f mcaptcha-cache
|
|
$(call deploy_dependencies)
|
|
sleep 5
|
|
$(call run_migrations)
|
|
|
|
frontend-env: ## Install frontend deps
|
|
$(call frontend_env)
|
|
|
|
frontend: ## Build frontend
|
|
$(call frontend_env)
|
|
cd $(OPENAPI) && yarn build
|
|
yarn install
|
|
@-rm -rf $(BUNDLE)
|
|
@-mkdir $(BUNDLE)
|
|
yarn build
|
|
@yarn run sass -s \
|
|
compressed templates/main.scss \
|
|
./static/cache/bundle/css/main.css
|
|
@yarn run sass -s \
|
|
compressed templates/mobile.scss \
|
|
./static/cache/bundle/css/mobile.css
|
|
@yarn run sass -s \
|
|
compressed templates/widget/main.scss \
|
|
./static/cache/bundle/css/widget.css
|
|
@./scripts/librejs.sh
|
|
@./scripts/cachebust.sh
|
|
|
|
lint: ## Lint codebase
|
|
cargo fmt -v --all -- --emit files
|
|
cargo clippy --workspace --tests --all-features
|
|
yarn lint
|
|
cd $(OPENAPI)&& yarn test
|
|
|
|
migrate: ## Run database migrations
|
|
$(call run_migrations)
|
|
|
|
migrate.dev: ## Run database migrations during development
|
|
$(call run_dev_migrations)
|
|
|
|
release: frontend ## Build app with release optimizations
|
|
$(call cache_bust)
|
|
cargo build --release
|
|
|
|
run: frontend ## Run app in debug mode
|
|
$(call cache_bust)
|
|
cargo run
|
|
|
|
|
|
db.sqlx.offline: ## prepare sqlx offline data
|
|
cd db/db-sqlx-postgres && cargo sqlx prepare \
|
|
--database-url=${POSTGRES_DATABASE_URL} -- \
|
|
--all-features
|
|
cd db/db-sqlx-maria && cargo sqlx prepare \
|
|
--database-url=${MARIA_DATABASE_URL} -- \
|
|
--all-features
|
|
|
|
test.frontend: ## Run frontend tests
|
|
$(call test_frontend)
|
|
|
|
test: frontend ## Run all available tests
|
|
$(call test_frontend)
|
|
$(call cache_bust)
|
|
$(call test_db_sqlx_postgres)
|
|
$(call test_db_sqlx_maria)
|
|
$(call test_core)
|
|
|
|
cargo test --no-fail-fast
|
|
# ./scripts/tests.sh
|
|
|
|
test.core: ## Run all core tests
|
|
$(call test_core)
|
|
|
|
test.db: ## Run all database driver tests
|
|
$(call test_db_sqlx_postgres)
|
|
$(call test_db_sqlx_maria)
|
|
|
|
test.db.pg: ## Run Postgres database driver tests
|
|
$(call test_db_sqlx_postgres)
|
|
|
|
test.db.maria: ## Run Maria database driver tests
|
|
$(call test_db_sqlx_maria)
|
|
|
|
|
|
test.integration: ## run integration tests with nightwatch.js
|
|
./scripts/integration.sh
|
|
|
|
xml-test-coverage: migrate ## Generate code coverage report in XML format
|
|
$(call cache_bust)
|
|
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}'
|