hestia

module
v0.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2022 License: Unlicense

README

hestia

Home projects. General area for mucking about with Golang using ideas from articles on the internet.

Preparation

Install make

sudo apt install make    # ubuntu
sudo dnf install make    # fedora

then type

make help

to see which commands are available.

Shell setup

Create all local bin directories:

mkdir -p ~/bin
mkdir -p ~/go/bin
mkdir -p ~/.local/bin
mkdir -p ~/.local/go/bin

The file ~/.profile should contain the following lines to setup PATH correctly:

# set these in the correct order
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

# set PATH so it includes user's private local bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
    PATH="$HOME/.local/bin:$PATH"
fi

# set PATH so it includes user's local go bin if it exists
if [ -d "$HOME/.local/go/bin" ] ; then
    PATH="$HOME/.local/go/bin:$PATH"
fi

# set PATH so it includes user's go bin if it exists
if [ -d "$HOME/go/bin" ] ; then
    PATH="$HOME/go/bin:$PATH"
fi

Reset environment

In order to make these settings permanent, logout or reboot your PC.

Installing tools

First check for the presence of Go and other tools.

make tools-which

Note: installation of Go is done locally in ~/.local/go as opposed to the normal location of /usr/local/go. This is so sudo is not required. Uninstall Go in /usr/local/go before attempting to install any tools.

Install tools like so:

make tools-install

Development workflow

On a rebase

Initialise generated code and modules

make generate
make qa

Changing code

Edit or add code or other development activity.

If any source files for generated code has changed:

make generate

Quality check code:

make qa

And build any new executables:

make build

Directories

Path Synopsis
cmd
pkg
set
widgets/service
Code generated by ../../../scripts/grpcserver.sh widgets.
Code generated by ../../../scripts/grpcserver.sh widgets.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL