Bakm: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 20: Line 20:
:https://github.com/NovaOrdis/go/blob/master/commands/bakm/doc/TODO.md<br>
:https://github.com/NovaOrdis/go/blob/master/commands/bakm/doc/TODO.md<br>
</blockquote>
</blockquote>
=Release Procedure=
* Format with <tt>gofmt</tt>:
<pre>
format
</pre>
* Update the repository
<pre>
git add .
git commit -m "release 1"
git push
</pre>
* Build on the target platform
<pre>
git pull
build
</pre>
The executable will be found under <tt>./output</tt>.

Revision as of 04:57, 5 April 2016

Internal

Overview

bakm (Backup Manager)

A Linux command primarily intended to be executed by cron and keep the content of a backup archive directory under control. Written in Go.

GitHub

https://github.com/NovaOrdis/go/tree/master/commands/bakm

TODO

https://github.com/NovaOrdis/go/blob/master/commands/bakm/doc/TODO.md

Release Procedure

  • Format with gofmt:
format
  • Update the repository
git add .
git commit -m "release 1"
git push
  • Build on the target platform
git pull
build

The executable will be found under ./output.