This document will walk you through the process of how to publish API Builder apps to a newly deployed cluster using Appcelerator CLI commands.
Setup
You will need Appcelerator CLI (appc cli) version 7.0.0+. To install Appcelerator CLI 7.0.0, execute this command:
npm install appcelerator -g |
Publish source code
The legacy method to publish the API Builder app is as follows:
-
Create a new API Builder app:
$ appc new -t arrowAppcelerator Command-Line Interface, version 7.0.0Copyright (c) 2014-2017, Appcelerator, Inc. All Rights Reserved.? What's the project name? appctest*** new completed. *** -
Update
appc.jsonenvironment to addextra_hostsif you haven't set up a DNS yet. If your cluster usesappctest.comas a domain name, then you need to addNODE_ENVas well:$cdappctest$viappc.json{..."cloud": {...//Change your container size here"container":"Medium",//Number of containersforyour app"minimum": 3,//Maximum number of containersforyou app when autoscalling kicksin"maximum": 5,//NODE_ENV is only neededif//a. You are runninginan alternately-named environment (like staging)//b. You are running on a domain with appctestinthe name"environment": {"NODE_ENV":"PRODUCTION","extra_hosts":"54.212.208.81 api.cloudapp-1.appctest.com"},...}} - Execute
appc install(required prior to the release of version 6.2.0). - Then publish the app normally by executing this command:
appc publish
Publish by providing Dockerfile
Starting from AMPLIFY Runtime Services (formerly known as Arrow Cloud) 1.6.0, you can publish to AMPLIFY Runtime Services by pushing a Docker image directly. If your cluster has no Internet access, this is the recommended method to publish.
-
Create a new API Builder app:
$ appc new -t arrowAppcelerator Command-Line Interface, version 7.0.0Copyright (c) 2014-2017, Appcelerator, Inc. All Rights Reserved.? What's the project name? appctest*** new completed. *** -
Prepare a Dockerfile by creating a Dockerfile under your project directory and use the
start_appscript. Use ofstart_appis required if you want to able to retrieve access and console logs of your app using theappc cloud logcatandappc cloud accesslogcommands. The following is a sample Dockerfile for an API Builder app:FROM mhart/alpine-node:5.12.0# Install curl command for app health checkRUN apk add --no-cache curl# This is the script to start appCOPY start_app/usr/local/bin/RUNchmod755/usr/local/bin/start_appRUNmkdir-p/opt/appWORKDIR/opt/appCOPY package.json/opt/appCOPY app.js/opt/appCOPY README.md/opt/appRUN npminstallENTRYPOINT ["/usr/local/bin/start_app"] -
The
start_appscript should look something like this and be placed under the project directory with the Dockerfile: -
Execute
appc publish. You will need to provide the app version using the--app-versionflag. You should always provide the app name since Appcelerator CLI will not scanpackage.jsonas it would normally with source code publishing that does obtain the app name. Usingappc publishwill build the Docker image by using the provided Dockerfile and push the image to AMPLIFY Runtime Services directly:$cdappctest$ appc publish --app-version 1.0.0 appctest -
If you need to scale up the number of servers, execute these commands:
# Set maximum number of containers allowed for appctest$ appc cloud config appctest --maxsize <size># Set current number of containers for appctest as long as the cluster has enough resource)$ appc cloud config appcteest --minsize <size>
Publish by using existing Docker image
Alternatively, after preparing your Dockerfile and start_app script, you can build the Docker image yourself and publish the image
to AMPLIFY Runtime Services:
-
Build the Docker image:
$cdappctest$ docker build -t appctestimage .# Double check the image presents locally$ docker images |grepappctestimageappctestimage latest 869918dab71b 43 minutes ago 277 MB -
Next, publish the image directly. Ensure that you provide the app version and name and image name by using the
--app-version,appname, and--imageflags:$cdappctest$ appc publish --app-version 1.0.0 --image appctestimage appctest -
If you need to scale up the number of servers, execute these commands:
# Set maximum number of containers allowed for appctest$ appc cloud config appctest --maxsize <size># Set current number of containers for appctest as long as the cluster has enough resource)$ appc cloud config appcteest --minsize <size>
Note: If you haven't set up your DNS yet, your app publish may fail with the following error:
$ appc cloud logcat appctest...Uncaught Exception Error loading connector/appc.arrowdb. Error: getaddrinfo ENOTFOUND api.cloudapp-1.appctest.com api.cloudapp-1.appctest.com:4432017-04-03T16:24:39-07:00 | Error: Error loading connector/appc.arrowdb. Error: getaddrinfo ENOTFOUND api.cloudapp-1.appctest.com api.cloudapp-1.appctest.com:443... |
In this case, you will need to execute the following command to configure
the custom host info in the app container. Please note if you try to update /etc/hosts file in the Dockerfile with the custom hostname and IP. It will not work
because the Docker swarm mode will override that information at the time
of the container launch.
$ appc cloud config --set "extra_hosts=54.212.208.81 api.cloudapp-1.appctest.com"Appcelerator Command-Line Interface, version 7.0.0Copyright (c) 2014-2017, Appcelerator, Inc. All Rights Reserved.Admin Hostname: https://admin.cloudapp-1.appctest.comThe variable has been saved successfully. # Confirm the env is set correctly$ appc cloud config --env appctestAppcelerator Command-Line Interface, version 7.0.0Copyright (c) 2014-2017, Appcelerator, Inc. All Rights Reserved.Admin Hostname: https://admin.cloudapp-1.appctest.comextra_hosts = 54.212.208.81 api.cloudapp-1.appctest.com |
Note about Docker image publish with Alpine: You will need to execute apk add --no-cache curl in the Docker file when publishing the Docker image.
CLI commands
|
Command
|
Description
|
|---|---|
|
|
Login |
|
|
Selection of an environment (optional, if the default needs to be switched). |
|
|
Create an app. |
|
|
Publish the app. |
|
|
Query the list of applications that are deployed to my current environment and dashboard. |
|
|
Query the config for a specific application that is deployed to the currently referenced environment and dashboard. |
|
|
Configuration for a given application: change the maximum number of containers. |
|
|
Configuration for a given application: change the minimum number of containers. |
|
|
Change the size of the given application. Accepted values include Dev, Small, Medium, Large, and XLarge. |
|
|
View logs of the application. |
appc cloud loglist —build_logs |
View logs of the application. |
appc cloud accesslog |
List application's access log. |
appc cloud add |
Add a new route or service. |
appc cloud cname |
Set a CNAME for an application. |
appc cloud config |
Configure the application. |
appc cloud crt |
Manage SSL certificates for the application. |
appc cloud download |
Download source files for the specified application and version. Note: If you publish using a Docker image, this command won't work. |
appc logout |
Log out |
appc remove |
Removes installed Appcelerator CLI. |
appc run |
Run an application locally for dev. and/or testing. |
appc unpublish |
Unpublish an application. |
appc cloud whoami |
Show current login user. |