Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleCreate the App
# Create the app, with the correct environment variable
nex-cli apps:create maestrano/web-ruby --env-file <path/to/application.nex-uat.yml>  --size 4 --tags "ruby,express,uat" --desc "ACME Enterprise [UAT]"
 
# Save the app name to a var to make your life easier
export app=clueless-turkey-1
 
# Transfer app ownership to your parent organization (e.g. maestrano)
nex-cli apps:transfer $app maestrano
# Link it to the repository
nex-cli apps:scm $app --link github:maestrano/mno-enterprise-demo:develop
 
# Start it
nex-cli apps:up $app
 
# Check the logs
nex-cli apps:logs $app

...