Generate 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 W" --email="george.w@wh.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 explicitly defined as 'https://slashetc/testapp'
   genapp TestApp -y --author="George W" --email="george.w@wh.org" --desc="A test application" --http="https://slashetc/testapp" --root-release-dir="../release"

Execute the generated app

  # 'TestApp' is the generated app
   ./testapp

Show the app help

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

Show the last 30 log lines

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

Show the files managed by the app

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

Generate a debian package

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

Generate the man pages

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

   man testapp
