class Redmine::Commands::Help

Public Instance Methods

execute() click to toggle source
# File lib/redmine/commands/help.rb, line 6
      def execute
        puts <<~HELP
          Usage:
              redmine [options] <command>

          Where OPTIONS:
              -p --privileged - Run in privileged mode (required for occupying ports below 1024)

          Where COMMANDS:
              start - run redmine
              list  - inspect list of running instances
              show  - print information about specific instance
              shell - get shell into specific instance
              install_plugins <config> <destination folder> - for internal use
              logs  - start tailing logs
        HELP
      end