actions-on-google / smart-home-dashboard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Report State Dashboard

This is a dashboard that developers can use to help them debug their smart home actions. It will obtain data from the HomeGraph and present it to you, allowing you to verify the data that is stored in it.

The app can be installed to Google App Engine or any Java Web Server.

Make sure to follow this guide to get a service account key

You can add a Giphy API key to giphy.service.ts to get animated images for each device type. Otherwise, a basic icon will show shown.

Setup

  1. Run mvn compile. This will compile both the Java project and the web frontend.

Build client (separately)

First you need to build the web frontend that you will interact with:

cd src/main/ngapp
npm install
npm run build
# Built files will be added in src/main/webapp

Build and deploy server

Using Google App Engine

To set up your instance:

  1. Use the Google Cloud Console to create a new App Engine application
    1. When prompted, select the region where you want your App Engine application located.
  2. Download and install the Google Cloud SDK if you haven't already
  3. Download and install Maven if you haven't already
  4. Configure the gcloud command-line environment:
gcloud init
gcloud auth application-default login
  1. Install the App Engine component
gcloud components install app-engine-java
  1. Verify that you are using the latest version of the Google Cloud SDK
gcloud components update
  1. Deploy the sample with mvn appengine:deploy
    1. It will be available at http://<your-project-id>.appspot.com
    2. You can stream logs from the command line by running: gcloud app logs tail -s default

Note: You may have connectivity issues if you try to run the sample locally

Read the documentation on App Engine to learn more.

Other Java Web Servers

To install on any other Java Web Server:

mvn clean package

Deploy the war artifact from target/

To run locally:

mvn clean package spring-boot:repackage

Then run java -jar target/[artifact_name].war

References & Issues

Make Contributions

Please read and follow the steps in the CONTRIBUTING.md.

License

See LICENSE.

Terms

Your use of this sample is subject to, and by using or downloading the sample files you agree to comply with, the Google APIs Terms of Service.

About

License:Apache License 2.0


Languages

Language:TypeScript 51.3%Language:Java 30.6%Language:HTML 8.6%Language:CSS 4.8%Language:JavaScript 4.7%