AngularJS

angularjs.png

Accessing your Gitana content from an Angular app is a simple process. Below you will find steps and examples for how to get connected and get started building.

API Keys

Every mobile app or web site that you build will need to have a set of API Keys that it will use to connect to your Cloud CMS platform on behalf of your code. These API keys consist of client and user key/secret pairs.

  1. Log in to your Cloud CMS tenant at https://<yourdomain>.cloudcms.net
  2. From Manage Platform -> API Keys

You will now see your API Keys for all of your platform's Application instances.

You can create as many Application instances as you'd like and each will have their own set of API Keys.

Download the gitana.json file, as you will need this to provide authentication for the example applications.

For more information, visit Configuring your API Keys.

Bookstore Example Site

The example site is a simple bookstore website, built using the Cloud CMS Sample Project and using Nuxt.js as a generator. It is intended for Nuxt developers to get a general sense of how Cloud CMS content might be used in their application, but is not intended for production use.

To setup the sample project:

  1. Log in to your Cloud CMS tenant at https://<yourdomain>.cloudcms.net
  2. Create a project, and select Sample Project as the project type
example-site.png

Source Code and Set Up

The code for this example is available as part of the Gitana SDK, which contains usages of Cloud CMS with many different languages and frameworks.

  1. To download, run git clone https://github.com/gitana/sdk.git
  2. Navigate to the angular/sample directory
  3. Paste your gitana.json file here
  4. Run npm install
  5. Run npm install -g @angular/cli to install Angular
  6. Run ng build --prod to build the Angular app
  7. Run node app to start the app server
  8. The example will be hosted at http://localhost:2999