TODO
- https://haraka.ml to test PMF ERP
- https://fastdemo.tk/ to test PMF of knowledge base
- http://assetmanagement.tk/ to test PMF of Fixed Asset Management only
- http://harakafmcg.tk/ to test PMF of FMCG features
TODO
TODO
TODO
TODO
TODO
TODO Continuous Integration-Continuous Deployment-Continuous Delivery
TODO
- Setup git-secret
- Generating a new GPG key
- Deleting GPG keys
- Quick'n easy gpg cheatsheet
- gpg-import-and-export-instructions
Employeess.
# Begin with an existing or new git repository.
cd /path/to/root/of/repo
# Initialize the git-secret repository by running
# command automatically adds .gitsecret/keys/random_seed file added to .gitignore file.
git secret init
# Add the first user to the git-secret repo keyring
git secret tell your@gpg.Employee.
# add files you wish to encrypt inside the git-secret repository
# can only add files that have been put into .gitignore as secret files
git secret add filename1 filename2 ...
# to encrypt all files which you have added by the git secret add command.
git secret hide
# decrypt files
git secret reveal
# show their contents to stdout
git secret cat /path/to/filename
TODO