Blame view
README.md
6.85 KB
|
9d3e514b9
|
1 |
# Our Boxen |
|
0dd5e5f37
|
2 3 4 |
This is a template Boxen project designed for your organization to fork and modify appropriately. |
|
38a27ec9c
|
5 6 7 |
The Boxen rubygem and the Boxen puppet modules are only a framework for getting things done. This repository template is just a basic example of _how_ to do things with them. |
|
0dd5e5f37
|
8 9 |
## Getting Started |
|
92dd6a9fd
|
10 11 |
1. Install Xcode Command Line Tools and/or full Xcode.
* If using full Xcode, you'll need to agree to the license by running: `xcodebuild -license`
|
|
a0281788e
|
12 |
1. Create a new repository on GitHub as your user for your Boxen. (eg. |
|
966c19f70
|
13 |
`wfarr/my-boxen`). **Make sure it is a private repository!** |
|
049d55af7
|
14 |
1. Use your install of [boxen-web](https://github.com/boxen/boxen-web) or get running manually like so: |
|
553c2e33d
|
15 |
``` |
|
09e8926fe
|
16 17 |
sudo mkdir -p /opt/boxen
sudo chown $USER:admin /opt/boxen
|
|
553c2e33d
|
18 19 20 21 22 |
mkdir -p ~/src/my-boxen
cd ~/src/my-boxen
git init
git remote add upstream https://github.com/boxen/our-boxen
git fetch upstream
|
|
4d1599b16
|
23 |
git checkout -b master upstream/master |
|
553c2e33d
|
24 25 26 27 28 |
git remote add origin https://github.com/wfarr/my-boxen
git push origin master
script/boxen
```
|
|
09e8926fe
|
29 |
|
|
553c2e33d
|
30 31 32 33 |
1. Close and reopen your Terminal. If you have a shell config file (eg. `~/.bashrc`) you'll need to add this at the very end: `[ -f /opt/boxen/env.sh ] && source /opt/boxen/env.sh`, and reload your shell. |
|
a0281788e
|
34 |
1. Confirm the Boxen env has loaded: `boxen --env` |
|
0bd729feb
|
35 |
|
|
a0281788e
|
36 37 38 39 40 41 |
Now you have your own my-boxen repo that you can hack on. You may have noticed we didn't ask you to fork the repo. This is because when our-boxen goes open source that'd have some implications about your fork also potentially being public. That's obviously quite bad, so that's why we strongly suggest you create an entirely separate repo and simply pull the code in, as shown above. |
|
70e99fcbf
|
42 |
|
|
16ae31636
|
43 |
## Getting your users started _after_ your "fork" exists |
|
92dd6a9fd
|
44 |
1. Install the Xcode Command Line Tools (full Xcode install optional). |
|
049d55af7
|
45 |
1. Point them at your private install of [boxen-web](https://github.com/boxen/boxen-web), **OR** have them run the following: |
|
16ae31636
|
46 47 48 49 50 51 52 53 54 55 56 57 58 |
``` sudo mkdir -p /opt/boxen sudo chown $USER:admin /opt/boxen git clone https://github.com/yourorg/yourreponame.git /opt/boxen/repo cd /opt/boxen/repo script/boxen # add boxen to your shell config, at the end, eg. echo '[ -f /opt/boxen/env.sh ] && source /opt/boxen/env.sh' ``` Open a new terminal, `boxen --env` to confirm. |
|
70e99fcbf
|
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
## What You Get This template project provides the following by default: * Homebrew * Git * Hub * DNSMasq w/ .dev resolver for localhost * NVM * RBenv * Full Disk Encryption requirement * NodeJS 0.4 * NodeJS 0.6 * NodeJS 0.8 * Ruby 1.8.7 * Ruby 1.9.2 * Ruby 1.9.3 * Ack * Findutils * GNU-Tar ## Customizing |
|
a0281788e
|
81 82 83 84 |
You can always check out the number of existing modules we already provide as optional installs under the [boxen organization](https://github.com/boxen). These modules are all tested to be compatible with Boxen. Use the `Puppetfile` to pull them |
|
97af892cc
|
85 |
in dependencies automatically whenever `boxen` is run. |
|
3e8aa6dbb
|
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
### Including boxen modules from github (boxen/puppet-<name>)
You must add the github information for your added Puppet module into your Puppetfile at the root of your
boxen repo (ex. /path/to/your-boxen/Puppetfile):
# Core modules for a basic development environment. You can replace
# some/most of these if you want, but it's not recommended.
github "dnsmasq", "1.0.0"
github "gcc", "1.0.0"
github "git", "1.0.0"
github "homebrew", "1.0.0"
github "hub", "1.0.0"
github "inifile", "0.9.0", :repo => "cprice-puppet/puppetlabs-inifile"
github "nginx", "1.0.0"
github "nodejs", "1.0.0"
github "nvm", "1.0.0"
github "ruby", "1.0.0"
github "stdlib", "3.0.0", :repo => "puppetlabs/puppetlabs-stdlib"
github "sudo", "1.0.0"
# Optional/custom modules. There are tons available at
# https://github.com/boxen.
github "java", "1.0.5"
In the above snippet of a customized Puppetfile, the bottom line
includes the Java module from Github using the tag "1.0.5" from the github repository
"boxen/puppet-java". The function "github" is defined at the top of the Puppetfile
and takes the name of the module, the version, and optional repo location:
def github(name, version, options = nil)
options ||= {}
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
end
Now Puppet knows where to download the module from when you include it in your site.pp or mypersonal.pp file:
# include the java module referenced in my Puppetfile with the line
# github "java", "1.0.5"
include java
|
|
a970e1571
|
128 |
### Node definitions |
|
97af892cc
|
129 |
|
|
a970e1571
|
130 131 132 133 134 135 |
Puppet has the concept of a ['node'](http://docs.puppetlabs.com/references/glossary.html#agent), which is essentially the machine on which Puppet is running. Puppet looks for [node definitions](http://docs.puppetlabs.com/learning/agent_master_basic.html#node-definitions) in the `manifests/site.pp` file in the Boxen repo. You'll see a default node declaration that looks like the following: |
|
97af892cc
|
136 |
|
|
78dd9c617
|
137 138 139 140 141 142 143 144 |
``` puppet
node default {
# core modules, needed for most things
include dnsmasq
# more...
}
```
|
|
97af892cc
|
145 |
|
|
1bd7053c2
|
146 147 148 149 150 |
### How Boxen interacts with Puppet Boxen runs everything declared in `manifests/site.pp` by default. But just like any other source code, throwing all your work into one massive file is going to be difficult to work with. Instead, we recommend you |
|
b9eac9217
|
151 152 153 154 155 |
use modules in the `Puppetfile` when you can and make new modules in the `modules/` directory when you can't. Then add `include $modulename` for each new module in `manifests/site.pp` to include them. One pattern that's very common is to create a module for your organization (e.g., `modules/github`) and put an environment class in that module |
|
1bd7053c2
|
156 157 |
to include all of the modules your organization wants to install for everyone by default. An example of this might look like so: |
|
78dd9c617
|
158 159 |
``` puppet # modules/github/manifests/environment.pp |
|
1bd7053c2
|
160 161 162 163 164 165 166 167 |
class github::environment {
include github::apps::mac
include ruby::1-8-7
include projects::super-top-secret-project
}
```
|
|
b9eac9217
|
168 |
If you'd like to read more about how Puppet works, we recommend |
|
1bd7053c2
|
169 170 171 172 173 174 175 |
checking out [the official documentation](http://docs.puppetlabs.com/) for: * [Modules](http://docs.puppetlabs.com/learning/modules1.html#modules) * [Classes](http://docs.puppetlabs.com/learning/modules1.html#classes) * [Defined Types](http://docs.puppetlabs.com/learning/definedtypes.html) * [Facts](http://docs.puppetlabs.com/guides/custom_facts.html) |
|
a970e1571
|
176 177 |
### Creating a personal module |
|
b9eac9217
|
178 |
See [the documentation in the |
|
d0a019228
|
179 |
`modules/people`](modules/people/README.md) |
|
a970e1571
|
180 181 182 183 184 185 |
directory for creating per-user modules that don't need to be applied globally to everyone. ### Creating a project module See [the documentation in the |
|
d0a019228
|
186 |
`modules/projects`](modules/projects/README.md) |
|
b9eac9217
|
187 |
directory for creating organization projects (i.e., repositories that people |
|
a970e1571
|
188 |
will be working in). |
|
966c19f70
|
189 190 191 192 193 |
## Binary packages We support binary packaging for everything in Homebrew, RBEnv, and NVM. See `config/boxen.rb` for the environment variables to define. |