The Co-op Cloud command-line utility belt 🎩🐇 https://coopcloud.tech
Go to file
decentral1se 75fb9a2774
continuous-integration/drone/push Build is passing Details
chore: publish new version
2021-10-14 13:31:18 +02:00
.chglog chore: added git-chglog options 2021-07-15 01:18:34 +01:00
.gitea docs: add template 2021-09-11 12:20:27 +02:00
cli feat: more info on version changing deployments 2021-10-14 13:30:33 +02:00
cmd/abra docs: document main package 2021-09-05 00:19:20 +02:00
pkg fix: standardise checkout options 2021-10-14 12:17:58 +02:00
scripts chore: publish new version 2021-10-14 13:31:18 +02:00
tests/resources test: ensure .env reading tests work 2021-10-02 22:10:00 +02:00
.drone.yml fix: use more descriptive name for token [ci skip] 2021-09-07 09:04:06 +02:00
.envrc.sample dosc: add gitea token [ci skip] 2021-09-07 09:01:26 +02:00
.gitignore feat: auto-release abra with goreleaser when a tag is pushed 2021-09-06 17:22:18 +02:00
.goreleaser.yml fix: show descending orders on releases [ci skip] 2021-10-06 09:13:07 +02:00
Makefile fix: drop file for version handling [ci skip] 2021-09-07 09:39:12 +02:00
README.md docs: finish release docs off [ci skip] 2021-09-16 09:52:03 +02:00
go.mod chore: set 1.16 as requirement now 2021-10-13 16:55:58 +02:00
go.sum chore: set 1.16 as requirement now 2021-10-13 16:55:58 +02:00

README.md

abra

https://coopcloud.tech

Build Status Go Report Card

The Co-op Cloud utility belt 🎩🐇

abra is a command-line tool for managing your own Co-op Cloud. It can provision new servers, create applications, deploy them, run backup and restore operations and a whole lot of other things. It is the go-to tool for day-to-day operations when managing a Co-op Cloud instance.

Install

Arch-based Linux Distros

abra (coming-soon) or for the latest version on git abra-git

yay -S abra-git # or abra

Debian-based Linux Distros

Coming Soon

Homebrew

Coming Soon

Build from source

git clone https://git.coopcloud.tech/coop-cloud/abra
cd abra
go env -w GOPRIVATE=coopcloud.tech
make install

The abra binary will be in $GOPATH/bin.

Autocompletion

bash

Copy scripts/autocomplete/bash into /etc/bash_completion.d/ and rename it to abra.

sudo cp scripts/autocomplete/bash /etc/bash_completion.d/abra
source /etc/bash_completion.d/abra

(fi)zsh

(fi)zsh doesn't have an autocompletion folder by default but you can create one, then copy scripts/autocomplete/zsh into it and add a couple lines to your ~/.zshrc or ~/.fizsh/.fizshrc

sudo mkdir /etc/zsh/completion.d/
sudo cp scripts/autocomplete/zsh /etc/zsh/completion.d/abra
echo "PROG=abra\n_CLI_ZSH_AUTOCOMPLETE_HACK=1\nsource /etc/zsh/completion.d/abra" >> ~/.zshrc

(replace .zshrc with ~/.fizsh/.fizshrc if you use fizsh)

Hacking

Install direnv, run cp .envrc.sample .envrc, then run direnv allow in this directory. This will set coopcloud repos as private due to this bug.. Or you can run go env -w GOPRIVATE=coopcloud.tech but I'm not sure how persistent this is.

Install Go >= 1.16 and then:

  • make build to build
  • ./abra to run commands
  • make test will run tests

Our Drone CI configuration runs a number of sanity on each pushed commit. See the Makefile for more handy targets.

Please use the conventional commit format for your commits so we can automate our change log.

Versioning

We use goreleaser to help us automate releases. We use semver for versioning all releases of the tool. While we are still in the public alpha release phase, we will maintain a 0.y.z-alpha format. Change logs are generated from our commit logs. We are still working this out and aim to refine our release praxis as we go.

For developers, while using this -alpha format, the y part is the "major" version part. So, if you make breaking changes, you increment that and not the x part. So, if you're on 0.1.0-alpha, then you'd go to 0.1.1-alpha for a backwards compatible change and 0.2.0-alpha for a backwards incompatible change.

Making a new release

  • Change ABRA_VERSION to match the new tag in scripts (use semver)
  • Commit that change (e.g. git commit -m 'chore: publish next tag 0.3.1-alpha')
  • Make a new tag (e.g. git tag 0.y.z-alpha)
  • Push the new tag (e.g. git push && git push --tags)
  • Wait until the build finishes on build.coopcloud.tech
  • Deploy the new installer script (e.g. cd ./scripts/installer && make)
  • Check the release worked, (e.g. abra upgrade; abra version)

Fork maintenance

We maintain a fork of godotenv for two features:

  1. multi-line env var support
  2. inline comment parsing

You can upgrade the version here by running go get github.com/Autonomic-Cooperative/godotenv@<commit> where <commit> is the latest commit you want to pin to. We are aiming to migrate to YAML format for the environment configuration, so this should only be a temporary thing.