Commit 16ae3163667af64c1dd7fd0cd21c78c322934ac0
1 parent
78dd9c6176
add docs about how to have members of your org set things up
Showing 1 changed file with 18 additions and 0 deletions Side-by-side Diff
README.md
... | ... | @@ -37,6 +37,24 @@ |
37 | 37 | That's obviously quite bad, so that's why we strongly suggest you |
38 | 38 | create an entirely separate repo and simply pull the code in, as shown above. |
39 | 39 | |
40 | +## Getting your users started _after_ your "fork" exists | |
41 | + | |
42 | +1. Install the XCode Command Line Tools (full XCode install optional). | |
43 | +1. Run the following: | |
44 | + | |
45 | +``` | |
46 | +sudo mkdir -p /opt/boxen | |
47 | +sudo chown $USER:admin /opt/boxen | |
48 | +git clone https://github.com/yourorg/yourreponame.git /opt/boxen/repo | |
49 | +cd /opt/boxen/repo | |
50 | +script/boxen | |
51 | + | |
52 | +# add boxen to your shell config, at the end, eg. | |
53 | +echo '[ -f /opt/boxen/env.sh ] && source /opt/boxen/env.sh' | |
54 | +``` | |
55 | + | |
56 | +Open a new terminal, `boxen --env` to confirm. | |
57 | + | |
40 | 58 | ## What You Get |
41 | 59 | |
42 | 60 | This template project provides the following by default: |