Last active
March 21, 2017 16:47
-
-
Save glynnbird/2fb72a201d862f26ca3dc2f82d824b45 to your computer and use it in GitHub Desktop.
My house temperature deployment script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# create package encapsulating the environment variables | |
wsk package update alexa --param url "$CLOUDANT_URL" --param dbname "$CLOUDANT_DBNAME" | |
# add action to the package and make it web enabled | |
wsk action update alexa/myhousetemperature myhousetemperature.js -a web-export true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment