The Co-op Cloud command-line utility belt 🎩🐇
Go to file
decentral1se 874550ff7f
fix: use more descriptive name for token [ci skip]
2021-09-07 09:04:06 +02:00
.chglog chore: added git-chglog options 2021-07-15 01:18:34 +01:00
cli fix: tables align output again 2021-09-07 08:41:03 +02:00
cmd/abra docs: document main package 2021-09-05 00:19:20 +02:00
pkg fix: get app new working again 2021-09-07 08:12:37 +02:00
tests/resources tests: around 60% code coverage for config package 2021-07-19 14:36:00 +01: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 refactor: drop comments, add header [ci skip] 2021-09-07 07:16:48 +02:00
Makefile feat: add new target for LOC stats [ci skip] 2021-09-05 01:57:50 +02:00
README.md docs: updated report card to new repo 2021-08-13 14:13:37 +01:00
TODO.md docs: shuffle TODOs from my side [ci skip] 2021-09-03 11:59:35 +02:00
go.mod chore: update to golang 1.17 2021-09-07 07:21:52 +02:00
go.sum chore: update to golang 1.17 2021-09-07 07:21:52 +02:00
version feat: added version and makefile 2021-07-13 23:47:47 +01:00

README.md

go-abra

Build Status Go Report Card

Work-In-Progress port of abra to Golang.

See abra for more. See our progress in TODO.md.

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/go-abra
cd go-abra
go env -w GOPRIVATE=coopcloud.tech
make install

The abra binary will be in $GOPATH/bin.

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.

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.