Coder Social home page Coder Social logo

gypsybud / intel-iot-examples-datastore Goto Github PK

View Code? Open in Web Editor NEW

This project forked from intel-iot-devkit/intel-iot-examples-datastore

0.0 1.0 0.0 15.43 MB

The Intel IoT Examples Datastore provides a simple data store for the how-to-code-samples.

JavaScript 100.00%

intel-iot-examples-datastore's Introduction

Intel IoT Examples Datastore

Introduction

The Intel IoT Examples Datastore is intended to provide a simple data store for sample applications that are part of the Intel IoT Starter Kit examples.

It is a Node.js* application written using Express* (https://github.com/strongloop/express). It uses a Redis* (http://redis.io) data store.

Although this data storage application is developed to deploy on Microsoft* Azure*, IBM* Bluemix*, or Amazon Web Services* (AWS) Elastic Beanstalk*, since it is based on commonly used open-source modules, it should be easy to deploy on many different cloud hosts.

How it works

The Intel IoT Examples Datastore application provides a simple REST API that allows authorized callers to store either log data or incremental counter data.

It exposes two sets of routes, both using basic token authentication.

To authorize, provide the AUTH_TOKEN you set in the X-Auth-Token HTTP header.

Multiple clients can share the same Intel IoT Examples Datastore by simply using a different route key for each application.

Counter

The counter routes are used to increment an increasing counter.

  • GET /counter/:key - gets the current value of a counter
  • GET /counter/:key/inc - increments a counter by 1

Logger

The logger routes wrap Redis* lists, and are used to keep a linear backlog of values.

  • GET /logger/:key - gets the latest value of a log
  • PUT /logger/:key - adds a value to a log (value parameter in the POST body)
  • GET /logger/:key/all - returns all values of a log

Local setup

To install the application dependencies, use the following command:

$ npm install

You also need to have Redis* installed. For more information, see the Redis* download page:

http://redis.io/download

Configuration

Primary configuration for the application takes the form of the following ENV variables:

  • REDIS_URL - the URL to use for Redis* communication
  • REDIS_AUTH - authentication token for the Redis* backend
  • PORT - port to serve the application on (defaults to 3000)
  • AUTH_TOKEN - authentication token for clients to use

Deployment - Microsoft* Azure*

This guide covers setting up a deployment environment for the Intel IoT Examples Datastore on Microsoft* Azure*.

For other platforms, refer to the platform documentation.

Before we begin, ensure you have a Microsoft* Azure* account:

https://portal.azure.com/signin/index

Create a new web application

  1. Click New and select Web + Mobile > Web App.
    Settings
  2. Enter the name for your new web application.
  3. Click Create.
    Your new web application is created.

Create a new Redis* cache

  1. Click New and select Data + Storage > Redis Cache.
    Settings
  2. Enter the name for your new Redis* cache.
  3. Click Create.
    Your new Redis* cache is created.

Determine settings for Redis*

  1. In the left sidebar, select Redis Caches and click the name of the new Redis* cache you created in the previous step.
    Settings
  2. Select All settings > Properties.
    Settings
  3. Write down or copy the value in the HOST NAME field so you can use it for the REDIS_URL setting for the web application.
  4. Select All settings > Access keys.
    Settings
  5. Write down or copy the value in the PRIMARY or SECONDARY field so you can use it for the REDIS_AUTH setting for the web application.
  6. Select All settings > Access Ports.
    Settings
  7. Set the Allow access only via SSL option to No.
  8. Click Save.

Configure the web application

  1. In the left sidebar, select Web Apps and click the name of the new web application you previously created.
    Settings
  2. Select All settings > Application settings.
    Settings
  3. Scroll down to the App settings section.
  4. Specify REDIS_URL by typing the value from the HOST NAME field above.
  5. Specify REDIS_AUTH by typing the value from the PRIMARY field above.
  6. Specify AUTH_TOKEN by typing whatever shared secret key you want.
  7. Click Save.

Note: you don't need to set PORT, as the Microsoft* Azure* platform does that automatically.

Deploy the web application

  1. In the left sidebar, select App Services and click the name of the new web application you previously created.
    Settings
  2. Click Settings.
  3. Click Deployment Source.
  4. Click Choose Source.
  5. Click External Repository.
  6. Click in the Repository URL field, and enter the following value: https://github.com/intel-iot-devkit/intel-iot-examples-datastore
  7. Click OK.

This means your application has been deployed to the Microsoft* Azure* cloud.

Deployment - IBM* Bluemix*

This guide covers setting up a deployment environment for the Intel IoT Examples Datastore on IBM* Bluemix*.

For other platforms, refer to the platform documentation.

Before we begin, please ensure you have an IBM* Bluemix* account:

https://console.ng.bluemix.net/

Create a new web application

  1. Choose the Space where you want to add a new web application, or create a new one.
    Settings
  2. Click Create Application.
    Settings
  3. Scroll down to Cloud Foundry Apps and choose Node JS SDK.
    Settings
  4. Fill in your app details.
    Settings

Create new Compose for Redis connection

  1. You will be redirected to the Getting Started page and your app will start, once there, click on Connections and click on Connect New.
    Settings
  2. Search Redis in the filter bar at the top of the page and click on Compose for Redis. Settings
  3. Currently there is only one plan to choose from, head to the bottom of the page and click Create.
    Settings
  4. When you are prompted to restage the application, click on the Restage button.
    Settings
  5. Once restaged click on the overview tab to take you back to the overview.
    Settings

Configure the web application

  1. Scroll to the bottom of the page and click on the Add GIT Repo and Pipeline button. If you have not already added an alias to your IBM ID a new window opens up, add a new alias, accept the terms and click Create. This alias needs to be lowercase.
    Settings
  2. Once your alias has been created a confirmation page will show. Click Continue.
    Settings
  3. Click on the Add GIT Repo and Pipeline button again, ensure that Populate the repo with the starter app package and enable the Build & Deploy pipeline is checked and click Continue.
    Settings
  4. Once your GIT repo has been created you will be shown a success page, click Close.
    Settings
  5. Your new GIT url is shown in the bottom right of the page.
    Settings

Configure Git*

In the directory you're using for this repository, use the command line to run the following Git* command that adds an IBM* Bluemix* server for deployment:

git remote add bluemix <GitURL>

where <GitURL> is the value displayed at the top right of the Overview page.

Now you are ready to deploy the application.

Deploy the web application

To deploy your web application, run the following Git* command:

git push bluemix master -f

You are prompted for your IBM* Bluemix* username and password.

Once the operation is complete, your application has been deployed to the IBM* Bluemix* cloud.

Note: it may take a moment for your web application to restart.

Deployment - AWS* Elastic Beanstalk*

This guide covers setting up a deployment environment for the Intel IoT Examples Datastore on AWS* using Elastic Beanstalk*.

For other platforms, refer to the platform documentation.

Before we begin, please ensure you have an AWS* account:

http://aws.amazon.com/

Install the AWS* Elastic Beanstalk Command Line Interface (EB CLI*) tools

To deploy the Intel IoT Examples Datastore on AWS* using Elastic Beanstalk*, you must first install the EB CLI* tools as explained below:

http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html

Create a new web application

In the directory you're using for this repository, use the command line to run the following EB CLI* command that creates a new AWS* application:

eb init

When prompted for the Elastic Beanstalk* region, enter the number of the region you wish, or choose the default.

When prompted for the Elastic Beanstalk* application to use, enter the number corresponding to the Create new Application option.

When prompted, enter y if you want to set up an SSH connection to your instances. Enter n if you do not want to set up an SSH connection.

Deploy your web application

Now, you can create your running environment by entering the following command:

eb create

When prompted for the Elastic Beanstalk* environment name, enter the name of the environment. If you want to accept the default, press Enter.

When prompted for a CNAME prefix, enter the CNAME prefix you want to use. If you want to accept the default, press Enter.

Configure your web application

Most of the configuration settings are automatically determined by the Intel IoT Examples Datastore application itself when running under AWS* Elastic Beanstalk*. To set AUTH_TOKEN, enter the following command:

eb setenv AUTH_TOKEN=<your token>

where <your token> is your actual authorization token.

intel-iot-examples-datastore's People

Contributors

deadprogram avatar chestondev avatar stewart avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.