I hereby claim:
- I am leejsinclair on github.
- I am l33t8l (https://keybase.io/l33t8l) on keybase.
- I have a public key ASCNC7rE2D0d0xJggt3KHTLZiihfB-W-AVPQt-Z-XiZKhwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| ### Keybase proof | |
| I hereby claim: | |
| * I am leejsinclair on github. | |
| * I am l33t8l (https://keybase.io/l33t8l) on keybase. | |
| * I have a public key ASCNC7rE2D0d0xJggt3KHTLZiihfB-W-AVPQt-Z-XiZKhwo | |
| To claim this, I am signing this object: |
| #!/bin/bash | |
| # Variables | |
| IP=$(ifconfig | grep 192 | awk '/inet addr/{print substr($2,6)}') | |
| echo "*" | |
| echo "* CREATING PRIVATE SENTRY ENVIRONMENT" | |
| echo "*" | |
| echo "* Couchbase UI: http://$IP:8091" | |
| mkdir -p ~/couchbase |
| # Get curl | |
| sudo apt-get install curl | |
| # Install docker | |
| curl -sSL https://get.docker.com/ | sh | |
| # Add current user to docker group | |
| sudo usermod -aG docker $USER | |
| # Need to logout and back in again |
| #!/bin/bash | |
| # Variables | |
| IP=$(ifconfig | grep 192 | awk '/inet addr/{print substr($2,6)}') | |
| echo "*" | |
| echo "* CREATING PRIVATE SENTRY ENVIRONMENT" | |
| echo "*" | |
| echo "* Docker UI: http://$IP:9000" | |
| echo "* Senry UI: http://$IP:80" | |
| echo "*" |
| #!/bin/bash | |
| # Variables | |
| IP=$(ifconfig | grep 192 | awk '/inet addr/{print substr($2,6)}') | |
| echo "*" | |
| echo "* CREATING PRIVATE BOWER ENVIRONMENT" | |
| echo "*" | |
| echo "* Docker UI: http://$IP:9000" | |
| echo "* Bower UI: http://$IP:5678" | |
| echo "* GitLab UI: http://$IP:10080" |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| exports.config = { | |
| // The address of a running selenium server. | |
| seleniumAddress: 'http://localhost:4444/wd/hub', | |
| // Capabilities to be passed to the webdriver instance. | |
| capabilities: { | |
| // 'browserName': 'internet explorer', - special installation needed | |
| // 'version':'10', | |
| 'browserName': 'chrome', | |
| //'browserName': 'firefox' |