Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aeyoll/wr
A Rust tool to deploy websites with ease, using git-flow and Gitlab CI/CD.
https://github.com/aeyoll/wr
ci-cd deploy deployment git git-flow gitlab release
Last synced: 16 days ago
JSON representation
A Rust tool to deploy websites with ease, using git-flow and Gitlab CI/CD.
- Host: GitHub
- URL: https://github.com/aeyoll/wr
- Owner: aeyoll
- License: mit
- Created: 2021-11-07T09:30:38.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-31T07:49:50.000Z (3 months ago)
- Last Synced: 2024-10-11T00:45:42.143Z (about 1 month ago)
- Topics: ci-cd, deploy, deployment, git, git-flow, gitlab, release
- Language: Rust
- Homepage:
- Size: 152 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# wr
[![GitHub Actions workflow status](https://github.com/aeyoll/wr/workflows/ci/badge.svg)](https://github.com/aeyoll/wr/actions)
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Minimum rustc version](https://img.shields.io/badge/rustc-1.62.0+-lightgray.svg)](#rust-version-requirements)
[![Conventional commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)A Rust tool to deploy websites with ease, using git-flow and Gitlab CI/CD.
Philosophy
---Warning: personal opinion here.
While git-flow is not trendy _at all_, it still has advantages over GitHub flow for website deployment:
- clear distinction between production and development environments
- a strong usage of tags, providing an easy rollback mechanism
- a good convention for branch namesThis tool is only intended to help to create and deploy new releases. Handling gitflow's features, hotfixes and bugfixes are (and will) not be covered.
Installation
---To install wr, use the install-script and add `$HOME/.wr/bin` to your `$PATH`.
```shell
curl -fsSL https://raw.githubusercontent.com/aeyoll/wr/main/install.sh | bash
```Configuration
----Setup some environment variables:
```sh
export GITLAB_HOST=gitlab.com # default to gitlab.com, but it can be a private instance
export GITLAB_TOKEN=glpat-012345678012345678 # GitLab access token with "api" rights
```Usage
---```
USAGE:
wr [FLAGS] [OPTIONS]FLAGS:
--debug Print additional debug information
-d, --deploy Launch a deploy job after the release
-f, --force Allow to make a release even if the remote is up to date
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-e, --environment Define the deploy environment (default: "Production", available: "Production",
"Staging")
-s, --semver_type Define how to increment the version number (default: "Patch", available: "Patch",
"Minor", "Major")
```Examples:
---Create a staging release and deploy it:
```sh
wr --environment=staging --deploy
```Create a production release, with logger level set at "debug", incrementing to the next minor version:
```sh
wr --semver_type=minor --debug
wr --environment=production --semver_type=minor --debug
# Those two lines are equivalent
```