431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
# File 'lib/app42/base/help.rb', line 431
def apps
print "Usage:\n app42 apps\n\n List all the deployed applications with their meta details\n\nExample:\n $app42 apps\n \n +--------------------------------+------------+-----------------+--------------------------+------+------------+----------------+---------------+--------+\n | === My Apps === |\n +--------------------------------+------------+-----------------+--------------------------+------+------------+----------------+---------------+--------+\n | App Url | App Status | Iaas Provider | Email | Name | Runtime | Instance Count | Framework | Memory |\n +--------------------------------+------------+-----------------+--------------------------+------+------------+----------------+---------------+--------+\n | https://demo.iab.app42paas.com | RUNNING | Amazon (Oregon) | [email protected] | demo | Ruby 2.0.0 | 1 | Ruby on Rack | 256 MB |\n +--------------------------------+------------+-----------------+--------------------------+------+------------+----------------+---------------+--------+\n"
end
|