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
| #!groovy | |
| import groovy.json.JsonOutput | |
| import groovy.json.JsonSlurper | |
| /* | |
| Please make sure to add the following environment variables: | |
| HEROKU_PREVIEW=<your heroku preview app> | |
| HEROKU_PREPRODUCTION=<your heroku pre-production app> | |
| HEROKU_PRODUCTION=<your heroku production app> |
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
| <!DOCTYPE html> | |
| <html lang="en-US"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> | |
| <body> | |
| <div ng-app=""> | |
| <p>Name : <input type="text" ng-model="name"></p> | |
| <h1>Hello {{name}}</h1> | |
| </div> |
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
| #<block-adobe> | |
| 127.0.0.1 activate.adobe.com | |
| 127.0.0.1 practivate.adobe.com | |
| 127.0.0.1 ereg.adobe.com | |
| 127.0.0.1 wip3.adobe.com | |
| 127.0.0.1 activate.wip3.adobe.com | |
| 127.0.0.1 3dns-3.adobe.com | |
| 127.0.0.1 3dns-2.adobe.com | |
| 127.0.0.1 adobe-dns.adobe.com | |
| 127.0.0.1 adobe-dns-2.adobe.com |
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
| # Node.js app Docker file | |
| FROM ubuntu:14.04 | |
| MAINTAINER Thom Nichols "[email protected]" | |
| ENV DEBIAN_FRONTEND noninteractive | |
| RUN apt-get update | |
| RUN apt-get -qq update | |
| RUN apt-get install -y nodejs npm |
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
| seleniumhub: | |
| image: selenium/hub | |
| ports: | |
| - 4444:4444 | |
| firefoxnode: | |
| image: selenium/node-firefox | |
| ports: | |
| - 5900 | |
| links: |