2022-02-11 12:12:26 +00:00
|
|
|
default: ## Debug build
|
|
|
|
cargo build
|
|
|
|
|
|
|
|
clean: ## Clean all build artifacts and dependencies
|
2022-02-12 12:55:45 +00:00
|
|
|
@-/bin/rm -rf target/
|
|
|
|
@-/bin/rm -rf database/migrator/target/
|
|
|
|
@-/bin/rm -rf database/*/target/
|
2022-02-14 14:29:32 +00:00
|
|
|
@-/bin/rm -rf database/*/tmp/
|
2022-02-11 12:12:26 +00:00
|
|
|
@cargo clean
|
|
|
|
|
2022-02-12 11:04:06 +00:00
|
|
|
coverage: migrate ## Generate coverage report in HTML format
|
|
|
|
cargo tarpaulin -t 1200 --out Html --skip-clean --all-features --no-fail-fast --workspace=database/db-sqlx-postgres,database/db-sqlx-sqlite,.
|
2022-02-11 12:12:26 +00:00
|
|
|
|
|
|
|
dev-env: ## Download development dependencies
|
|
|
|
cargo fetch
|
|
|
|
|
|
|
|
doc: ## Prepare documentation
|
|
|
|
cargo doc --no-deps --workspace --all-features
|
|
|
|
|
|
|
|
#docker: ## Build docker images
|
|
|
|
# docker build -t realaravinth/gists:master -t realaravinth/gists:latest .
|
|
|
|
#
|
|
|
|
#docker-publish: docker ## Build and publish docker images
|
|
|
|
# docker push realaravinth/gists:master
|
|
|
|
# docker push realaravinth/gists:latest
|
|
|
|
|
|
|
|
lint: ## Lint codebase
|
|
|
|
cargo fmt -v --all -- --emit files
|
|
|
|
cargo clippy --workspace --tests --all-features
|
|
|
|
|
|
|
|
release: ## Release build
|
|
|
|
cargo build --release
|
|
|
|
|
|
|
|
run: default ## Run debug build
|
|
|
|
cargo run
|
|
|
|
|
2022-02-12 11:04:06 +00:00
|
|
|
migrate: ## run migrations
|
|
|
|
@-rm -rf database/db-sqlx-sqlite/tmp && mkdir database/db-sqlx-sqlite/tmp
|
|
|
|
cd database/migrator && cargo run
|
|
|
|
|
2022-02-12 12:55:45 +00:00
|
|
|
sqlx-offline-data: ## prepare sqlx offline data
|
|
|
|
cargo sqlx prepare --database-url=${POSTGRES_DATABASE_URL} -- --bin gists \
|
|
|
|
--all-features
|
|
|
|
|
2022-02-12 11:04:06 +00:00
|
|
|
test: migrate ## Run tests
|
|
|
|
cd database/db-sqlx-postgres &&\
|
|
|
|
DATABASE_URL=${POSTGRES_DATABASE_URL}\
|
|
|
|
cargo test --no-fail-fast
|
|
|
|
cd database/db-sqlx-sqlite &&\
|
|
|
|
DATABASE_URL=${SQLITE_DATABASE_URL}\
|
|
|
|
cargo test --no-fail-fast
|
|
|
|
cargo test
|
|
|
|
|
|
|
|
xml-test-coverage: migrate ## Generate cobertura.xml test coverage
|
|
|
|
cargo tarpaulin -t 1200 --out Xml --skip-clean --all-features --no-fail-fast --workspace=database/db-sqlx-postgres,database/db-sqlx-sqlite,.
|
2022-02-11 12:12:26 +00:00
|
|
|
|
|
|
|
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}'
|