Giter Site home page Giter Site logo

bravoshubham / iota-starter-server-fm Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fukudasjp/iota-starter-server-fm

0.0 1.0 0.0 3.94 MB

IoT for Automotive Starter - Fleet Management

License: Other

Shell 0.02% JavaScript 42.73% CSS 14.46% HTML 8.06% TypeScript 34.73%

iota-starter-server-fm's Introduction

IBM IoT for Automotive - Fleet Management Starter Application

The IBM IoT for Automotive - Fleet Management Starter Application demonstrates how quickly you can build an app on IBM Bluemix to manage and monitor a fleet of vehicles in real time.

Overview

The Fleet Management Starter Application uses services in IBM Bluemix to provide a sample solution for fleet operation management and personnel. By using the application, you can easily track and view the following information:

  • Availability of a fleet of cars on a map
  • Location of vehicles
  • Overall health of the entire fleet
  • Health diagnostics and conditions of a specific vehicle in the fleet
  • Condition of vehicles by order of severity or risk
  • Event history for the entire fleet
  • Event history for a specific vehicle in the fleet

The Fleet Management Starter Application uses the following services that are available on IBM Bluemix:

Deploying the app on Bluemix

You can automatically deploy an instance of the Fleet Management Starter Application on Bluemix by clicking Deploy to Bluemix. You can also deploy the app manually.

To manually deploy your own instance of the Fleet Management Starter Application on Bluemix, complete all of the following steps:

  1. [Register][bluemix_signup_url] an account on Bluemix or use an existing valid account.

  2. Download and install the [Cloud-foundry CLI][cloud_foundry_url] tool.

  3. Clone the Fleet Management Starter Application to your local environment by using the following console command:

    git clone https://github.com/ibm-watson-iot/iota-starter-server-fm.git  
    
  4. Change to the directory that you created.

  5. Edit the manifest.yml file and change the values of <name> and <host> to something unique.

applications:
       :
  host: iota-starter-server-fleetmanagement
  name: iota-starter-server-fleetmanagement
  memory: 512M
  path: .
  instances: 1
       :

The host value is used to generate your application URL, which is in the following syntax:
<host>.mybluemix.net.

  1. Install the NPM package by using the following command. The installer observes the dependencies that are specified in your package.json file.

$ cd ./webclient $ npm install

7. Convert TypeScript to JavaScript:

$ npm run tsc $ npm run gulp $ cd ..


8. By using the command line tool, connect to Bluemix and log in when prompted:

$ cf api https://api.ng.bluemix.net $ cf login


9. Create an instance of the IBM IoT for Automotive service in Bluemix:

$ cf create-service iotforautomotive free_shared FleetIoTForAuto


10. Create an instance of the Cloudant NoSQL DB service in Bluemix:

$ cf create-service cloudantNoSQLDB Lite FleetCloudantDB


11. Push the starter app to Bluemix by using the following command. Because you will need to perform more steps when the app is deployed, you must add the option `--no-start` when you run the `push` command.

$ cf push --no-start

Your very own instance of the IBM IoT for Automotive - Fleet Management Starter Application is now deployed on Bluemix.

## Activating the Bluemix services

Before you can use the IBM IoT for Automotive - Fleet Management Starter Application, you need to do the following tasks:

- [Activate the **IBM IoT for Automotive** service](#activate)
- [Configure authentication](#authent)

### <a name="activate"></a> Activating the IBM IoT for Automotive service

1. If the app is already running on Bluemix, stop the app.

2. Open the [Bluemix dashboard][bluemix_dashboard_url] in your browser.

3. Open the IBM IoT for Automotive service and then wait for a few seconds until the user credentials display.

### <a name="authent"></a> Configuring authentication

To secure the app, authentication is enabled by default for the IoT for Automotive - Fleet Management Starter Application. The default user credentials are as follows:

User name | Password
----- | -----
starter | Starter4Iot

- To change the user name or password that is used by the app, edit the values that are specified for the `APP_USER` and `APP_PASSWORD` environment variables.

- To remove authentication, set both the `APP_USER` and `APP_PASSWORD` environment variables to 'none'.

## <a name="run"></a> Starting the app

- To start the Fleet Management Starter Application, open the [Bluemix dashboard][bluemix_dashboard_url] and start the app.

Congratulations! You are now ready to use your own instance of the IBM IoT for Automotive - Fleet Management Starter Application. Open `http://<host>.mybluemix.net` in your browser.

## (Optional) Connecting to an OBDII dongle plugged in to your car

The starter app provides a mobile app to connect to an OBDII dongle plugged in to your car. The mobile app sends data from an OBDII dongle to the Fleet Management Starter Application via IoT Platform service and you can see the data in the app. Follow the steps below to enable this optional feature.

### Bind the IoT Platform service to the app

1. Open the [Bluemix dashboard][bluemix_dashboard_url] in your browser.

1. Open the IBM IoT for Automotive service.

1. Select **Connections** tab at the left navigation bar.

1. Click **Connect New**

1. Select *Internet of Things Platform* service and click *Create* to bind the service

### Create a device type for your device

When you start a mobile app for the first time, your device is registered to the IoT Platform service automatically with a device type __OBDII__. The device type needs to be prepared beforehand.   

1. Launch the IoT Platform dashboard on Bluemix.

1. Open **Device** page

1. Open **Device Types** tab at top of the page

1. Click **+Create Type**

1. Click **Create device type**

1. Input 'OBDII' in **Name** field

1. Leave the other fields as default and click **Next** at the bottom right until a device type is created.

### Set up the OBDII Fleet Management App

Refer [IBM IoT for Automotive - OBDII Fleet Management App for Android](https://github.com/ibm-watson-iot/iota-starter-obd-android) to build and install a mobile app to your Android phone. Once you get ready to use it, start the mobile app on your phone.

### Connect the device to the IoT for Automotive service

When you start the mobile app for the first time, a device is registered automatically to the IoT Platform service that you have specified in the mobile app, and corresponding vehicle is created automatically when you connect your device to the IoT Platform. Now, your device is connected to the Fleet Management Starter Application. Go to **Map** or **Car Status** page in the app and see the status.

If you no longer need a device, go to IoT Platform dashboard and delete your device manually. Then, after you delete it, update vehicles in the IBM IoT for Automotive service as follows.

1. Open the Fleet Management Starter Application on your browser.

1. Select **Vehicle** tab at the left navigation bar.

1. Click **Sync with IoT Platform** at top right of the page.

A vehicle corresponding to deleted device must be removed from a table. Also, if you have added new device to IoT Platform manually, new vehicle is added to the table. 

## Reporting defects
To report a defect with the IoT for Automotive - Mobility Starter Application mobile app, go to the [Issues section](https://github.com/ibm-watson-iot/iota-starter-server-fm/issues) section.

## Troubleshooting
To debug problems, check the Bluemix app logs. To view the logs, run the following command from the Cloud Foundry CLI:

$ cf logs --recent

For more information about how to troubleshoot your application, see the [Troubleshooting section](https://www.ng.bluemix.net/docs/troubleshoot/tr.html) in the Bluemix documentation.

## Privacy Notice

The IoT for Automotive - Fleet Management Starter Application includes code to track deployments to [IBM Bluemix](https://www.bluemix.net/) and other Cloud Foundry platforms.

For each instance that you deploy, the following information is sent to a [Deployment Tracker](https://github.com/cloudant-labs/deployment-tracker) service:

* Application name (`application_name`)
* Space ID (`space_id`)
* Application version (`application_version`)
* Application URIs (`application_uris`)
* Labels of bound services
* Number of instances for each bound service

The tracked data is collected from the `VCAP_APPLICATION` and `VCAP_SERVICES` environment variables in IBM Bluemix and other Cloud Foundry platforms. We use the data to track metrics around deployments of sample applications to IBM Bluemix to measure the usefulness of our examples so that we can continuously improve the content that we offer to you. Only deployments of sample applications that include code to ping the Deployment Tracker service are tracked.

### Disabling deployment tracking

You can disable the Deployment Tracker service by removing `require("cf-deployment-tracker-client").track();` from the beginning of the `app.js` server file.

## Useful links
- [IBM Bluemix](https://bluemix.net/)
- [IBM Bluemix Documentation](https://www.ng.bluemix.net/docs/)
- [IBM Bluemix Developers Community](http://developer.ibm.com/bluemix)
- [IBM Watson Internet of Things](http://www.ibm.com/internet-of-things/)
- [IBM Watson IoT Platform](http://www.ibm.com/internet-of-things/iot-solutions/watson-iot-platform/)
- [IBM Watson IoT Platform Developers Community](https://developer.ibm.com/iotplatform/)

[bluemix_dashboard_url]: https://console.ng.bluemix.net/dashboard/
[bluemix_signup_url]: https://console.ng.bluemix.net/registration/
[cloud_foundry_url]: https://github.com/cloudfoundry/cli

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.