TODO: Write a project description
TODO: Give a couple of examples of how to use
| // Set up Ubuntu on Ec2 instance | |
| // Install unzip. | |
| sudo apt-get install unzip | |
| // Download Vault and Consul(if necessary) | |
| wget https://releases.hashicorp.com/vault/0.6.2/vault_0.6.2_linux_amd64.zip |
| # in order to download release artifacts from github, you have to first retreive the | |
| # list of asset URLs using the github repo REST API. Use the asset URL to download | |
| # the artifact as a octet-stream data stream. You will need to get an access token | |
| # from "settings -> developer settings -> personal access tokens" on the github UI | |
| #!/bin/bash -e | |
| owner="MY_ORG_NAME" | |
| repo="MY_REPO_NAME" | |
| tag="ARTIFACT_TAG" | |
| artifact="ARTIFACT_NAME" |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../paper-item/paper-item.html"> | |
| <link rel="import" href="../paper-input/paper-input.html"> | |
| <link rel="import" href="../paper-button/paper-button.html"> | |
| <polymer-element name="my-element"> | |
| <template> |