Blame view

README.md 4.95 KB
9d3e514b9   John Barnette   Initial commit
1
  # Our Boxen
0dd5e5f37   Will Farrington   Update README wit...
2
3
4
  
  This is a template Boxen project designed for your organization to fork and
  modify appropriately.
38a27ec9c   Will Farrington   README tweaks
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   Will Farrington   Update README wit...
8
9
  
  ## Getting Started
a0281788e   Will Farrington   README tweaks
10
11
  1. Install XCode Command Line Tools and/or full XCode.
  1. Create a new repository on GitHub as your user for your Boxen. (eg.
966c19f70   Will Farrington   Update for script...
12
  `wfarr/my-boxen`). **Make sure it is a private repository!**
a0281788e   Will Farrington   README tweaks
13
  1. Get running like so:
553c2e33d   Will Farrington   more readme love
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    ```
    mkdir -p ~/src/my-boxen
    cd ~/src/my-boxen
    git init
    git remote add upstream https://github.com/boxen/our-boxen
    git fetch upstream
    git co -b master upstream/master
    git remote add origin https://github.com/wfarr/my-boxen
    git push origin master
    
    script/boxen
    ```
  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   Will Farrington   README tweaks
30
  1. Confirm the Boxen env has loaded: `boxen --env`
0bd729feb   Will Farrington   README updates
31

a0281788e   Will Farrington   README tweaks
32
33
34
35
36
37
  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   Will Farrington   Add customization...
38

16ae31636   Will Farrington   add docs about ho...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  ## Getting your users started _after_ your "fork" exists
  
  1. Install the XCode Command Line Tools (full XCode install optional).
  1. Run the following:
  
  ```
  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   Will Farrington   Add customization...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  ## 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   Will Farrington   README tweaks
78
79
80
81
  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   Gary Larizza   Update README
82
  in dependencies automatically whenever `boxen` is run. 
a970e1571   Gary Larizza   Update README.md ...
83
  ### Node definitions
97af892cc   Gary Larizza   Update README
84

a970e1571   Gary Larizza   Update README.md ...
85
86
87
88
89
90
  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   Gary Larizza   Update README
91

78dd9c617   Will Farrington   README tweaks
92
93
94
95
96
97
98
99
  ``` puppet
  node default {
    # core modules, needed for most things
    include dnsmasq
  
    # more...
  }
  ```
97af892cc   Gary Larizza   Update README
100

1bd7053c2   Gary Larizza   Update README.md ...
101
102
103
104
105
106
107
108
109
110
111
112
  ### 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 
  use modules via the `Puppetfile` when you can and making new modules 
  in the `modules/` directory when you can't. Then you just need to 
  `include $modulename` those modules in `manifests/site.pp`. One pattern 
  that's very common is to create a module for your organization 
  (eg. `modules/github`) and put an environment class in that module 
  to include all of the modules your organization wants to install for 
  everyone by default. An example of this might look like so:
78dd9c617   Will Farrington   README tweaks
113
114
  ``` puppet
  # modules/github/manifests/environment.pp
1bd7053c2   Gary Larizza   Update README.md ...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
   class github::environment {
     include github::apps::mac
  
     include ruby::1-8-7
  
     include projects::super-top-secret-project
   }
   ```
  
   If you'd like to read more about how Puppet  works, we recommend 
   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   Gary Larizza   Update README.md ...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
  
  ### Creating a personal module
  
  See [the documentation in the
  `modules/people`](https://github.com/boxen/our-boxen/blob/master/modules/people/README.md)
  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
  `modules/projects`](https://github.com/boxen/our-boxen/blob/master/modules/projects/README.md)
  directory for creating organization projects (read: repositories that people
  will be working in).
966c19f70   Will Farrington   Update for script...
146
147
148
149
150
  
  ## Binary packages
  
  We support binary packaging for everything in Homebrew, RBEnv, and NVM.
  See `config/boxen.rb` for the environment variables to define.