Generating a test app

  # An app named 'TestApp' is generated, inside folder 'testapp', main script will be 'testapp'. The home page URL for the app will be https://github/michelm33/testapp
   genapp TestApp -y --author="George Washington" --email="george.washington@whitehouse.org" --desc="A test application" --github-id="michelm33" --root-release-dir="../release"

  # Same as previous example, but the home page URL for the app is explicitely defind as 'https://slashetc/testapp'
   genapp TestApp -y --author="George Washington" --email="george.washington@whitehouse.org" --desc="A test application" --http="https://slashetc/testapp" --root-release-dir="../release"

Executing the generated app

  # 'TestApp' is the generated app
   ./testapp

Showing the app help

  # 'TestApp' is the generated app
   ./testapp -h

Showing the last 30 log lines

  # 'TestApp' is the generated app
   ./testapp --log=30

Showing the files managed by the app

  # 'TestApp' is the generated app
   ./testapp --files

Generating a debian package

  # This generates a release file tree and a debian package
   make release

Generating the man pages

  # This generates the manpage which can be open using 'man testapp'
   make man

   man testapp
