-
Notifications
You must be signed in to change notification settings - Fork 24
Quick Start: Deploy To Apigee Edge
- Why deploy to Apigee Edge?
- Prerequesites
- Basic steps
- Detailed description
- Test your app on Edge
- Examples
When Apigee 127 applications are deployed to the Apigee Edge platform, they will take advantage of local optimizations so that they run with the best possible availability, scalability, and performance.
To deploy your Apigee 127 project to Apigee Edge you'll need:
- An account on Apigee.com
- An Apigee 127 account configured with your Apigee.com account information.
For example:
a127 account create <my_account>
Note that if you do not have an Apigee.com account, you'll be prompted to create one when your run this command.
If you do not have one, you must create an Apigee 127 account with your Apigee Edge account information. Enter this command and follow the prompts:
a127 account create <my-account>
From the root directory of your Apigee 127 project, run:
a127 project deploy
Apigee 127 bundles up your project and deploys it to Edge. It uses the Apigee account information stored in the currently active Apigee 127 account.
The a127 project deploy
command uses apigeetool
behind the scenes to deploy your Apigee 127 project to Apigee Edge.
The a127 project deploy
command includes these options:
-
-h or --help
Prints usage information to standard output
-
-a or --account [account]
Lets you specify which Apigee 127 account to use. By default, the command takes the currently active account. To see which account is active, do
a127 account list
. -
-i or --import-only
Imports the project to Edge, but does not deploy it.
-
-n or --name [name]
Overrides the default name for the project. The default name is
a127-<project_root_folder_name>
. For example,a127-example-project
. -
-main or --main [main]
Overrides the main Node.js application file. In a new Apigee 127 project, the main file is
<project-folder>/app.js
. -
-b or --base [path]
Overrides the base path for the Apigee Edge API proxy deployment. By default, the base path is
/<project-name>
. -
-d or --docs [path]
Overrides the base path from where your API's documentation is accessed. The default is
/docs
.
curl http://ORG-ENV.apigee.net/PROJECT-NAME'
Substitute the name of your organization on Apigee Edge, the name of the environment to deploy to (e.g., test), and the name of the deployed project. By default, the name is a127-<project-name>
, where <project-name
is the name of your Apigee 127 project. You can specify a different name if you deploy with the -n option.
##Examples
a127 project deploy -n myproxy
>Deploys the project to Apigee Edge as an API proxy named myproxy
.
a127 project deploy -m myfile.js
>Deploys the project to Apigee Edge and configures the main Node.js file to be myfile.js
.
Having Trouble? Try posting your question to the Apigee Community. Or, for more links and resources, check out our Help Page
Need help? Visit the Apigee Community ! |
---|
-
Getting started
-
Add policies to your API
-
Add security policies
-
Deploy your projects
-
Programmatic hooks
-
Good to know about
-
Deep dives
-
Reference topics
-
Troubleshooting and getting help
-
Related resources