Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 1 | # Running the playground compile server locally |
| 2 | |
Nicolas LaCasse | 0319721 | 2014-08-29 15:26:05 -0700 | [diff] [blame] | 3 | Install Docker on Goobuntu: |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 4 | |
Nicolas LaCasse | 0319721 | 2014-08-29 15:26:05 -0700 | [diff] [blame] | 5 | * http://go/installdocker |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 6 | |
Nicolas LaCasse | 0319721 | 2014-08-29 15:26:05 -0700 | [diff] [blame] | 7 | Install Docker on OS X: |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 8 | |
Nicolas LaCasse | 0319721 | 2014-08-29 15:26:05 -0700 | [diff] [blame] | 9 | * https://github.com/boot2docker/osx-installer/releases |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 10 | |
| 11 | Build the playground Docker image (this will take a while...): |
| 12 | |
| 13 | $ cp ~/.netrc $VEYRON_ROOT/veyron/go/src/veyron/tools/playground/builder/netrc |
| 14 | |
| 15 | $ sudo docker build -t playground $VEYRON_ROOT/veyron/go/src/veyron/tools/playground/builder/. |
| 16 | |
Nicolas LaCasse | 0319721 | 2014-08-29 15:26:05 -0700 | [diff] [blame] | 17 | Note: If you want to ensure an up-to-date version of veyron is installed in the |
| 18 | Docker image, run the above command with the "--no-cache" flag. |
| 19 | |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 20 | Install the playground binaries: |
| 21 | |
| 22 | $ go install veyron/tools/playground/... |
| 23 | |
| 24 | Run the compiler binary as root: |
| 25 | |
Adam Sadovsky | 71108b8 | 2014-08-25 16:34:44 -0700 | [diff] [blame] | 26 | $ sudo go/bin/compilerd --shutdown=false --address=localhost:8181 |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 27 | |
Adam Sadovsky | 71108b8 | 2014-08-25 16:34:44 -0700 | [diff] [blame] | 28 | The server should now be running at http://localhost:8181 and responding to |
Adam Sadovsky | 0f88f23 | 2014-08-20 11:56:46 -0700 | [diff] [blame] | 29 | compile requests at http://localhost:8181/compile. |