https://github.com/jpadilla/juicebox
A virtual machine designed for programming workshops.
https://github.com/jpadilla/juicebox
packer programming-workshop virtual-machine
Last synced: 6 months ago
JSON representation
A virtual machine designed for programming workshops.
- Host: GitHub
- URL: https://github.com/jpadilla/juicebox
- Owner: jpadilla
- License: mit
- Created: 2014-05-01T02:45:06.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-26T12:30:28.000Z (about 10 years ago)
- Last Synced: 2025-03-30T03:08:55.431Z (6 months ago)
- Topics: packer, programming-workshop, virtual-machine
- Language: Shell
- Homepage: http://jpadilla.github.io/juicebox/
- Size: 810 KB
- Stars: 534
- Watchers: 26
- Forks: 28
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Juice Box
A virtual machine designed for programming workshops.

Based on [boxcutter/ubuntu](https://github.com/boxcutter/ubuntu).
## Reason
Technical workshops shouldn't be about installing a development environment in Linux, Windows, OS X, or whatever else. Unless that's what they are about, this takes way too much time from everyone and it's a pain.
## Specs
This project includes two [Packer](https://packer.io/) templates:
- server.json - No desktop environment.
- desktop.json - Xubuntu desktop environment.Both of them build a virtual machine based on `Ubuntu Server 14.04` with the the following software installed:
- [Git](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/git.sh)
- [Python 3.4 with pyenv](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/python.sh)
- [Node.js with nvm](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/nodejs.sh)
- [Ruby 2.1 with RVM](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/ruby.sh)
- [MongoDB](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/mongodb.sh)
- [Redis](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/redis.sh)
- [PostgreSQL](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/postgresql.sh)
- [Docker](https://github.com/jpadilla/dev-box/blob/master/scripts/provisioning/docker.sh)Desktop version has the following installed:
- [Sublime Text 3](https://github.com/jpadilla/juicebox/blob/master/scripts/provisioning/sublime-text-3.sh)
- [Google Chrome](https://github.com/jpadilla/juicebox/blob/master/scripts/provisioning/google-chrome.sh)
- [Firefox](https://github.com/jpadilla/juicebox/blob/master/scripts/provisioning/firefox.sh)## Distributing
I'll be building OVA files and Vagrant boxes for each version and hosting them.
## Building and Uploading
Requirements:
- [Packer](https://packer.io/)
- [S3cmd](http://s3tools.org/s3cmd)### Server
```
$ make server
$ AWS_ACCESS_KEY_ID='' AWS_SECRET_ACCESS_KEY='' make upload/server
```### Desktop
```
$ make desktop
$ AWS_ACCESS_KEY_ID='' AWS_SECRET_ACCESS_KEY='' make upload/desktop
```