self.help

in lib/res_cli/cli.rb [303:317]


    def self.help
        puts "Usage: #{$PROGRAM_NAME} [options]"
        puts "\nOptions:"
        puts "  -li, --login                    Login with username and password"
        puts "  -su, --sign-up                  Sign up with email and password"
        
        puts "  -lo, --logout                   Logout"
        puts "  -c,  --create TYPE              Create a new ResDB or PythonSDK instance"
        puts "  -e,  --exec-into INSTANCE_ID    Bash into a running ResDB or PythonSDK instance"
        puts "  -v,  --view-instances           View details about running instances"
        puts "  -d,  --delete INSTANCE_ID       Delete a running ResDB or PythonSDK instance"
        puts "  -w,  --whoami                   Display the current logged-in user"        
        puts "  -h,  --help                     Display this help message"
    end