Commit cccdfbdcb51c1e659d0bbc0035436d0684ea4bef

Authored by Jared Pace
1 parent a43dcc0c
Exists in master and in 1 other branch production

Update Markdown formatting in the README

Showing 1 changed file with 17 additions and 12 deletions   Show diff stats
README.md
... ... @@ -9,12 +9,13 @@ Rails applications. If you're uncomfortable with any step below then Errbit is n
9 9 for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at
10 10 [Thoughbot](http://thoughtbot.com), which Errbit is based on.
11 11  
12   -*Set your local box or server(Ubuntu):*
  12 +**Set your local box or server(Ubuntu):**
  13 +
13 14 1. Install MongoDB
14 15 * Follow the directions [here](http://www.mongodb.org/display/DOCS/Ubuntu+and+Debian+packages) then:
15 16  
16   - aptitude update
17   - aptitude install mongodb
  17 + aptitude update
  18 + aptitude install mongodb
18 19  
19 20 2. Install libxml
20 21  
... ... @@ -24,33 +25,37 @@ for you. Checkout [Hoptoad](http://hoptoadapp.com) from the guys over at
24 25  
25 26 gem install bundler --pre
26 27  
27   -*Running Locally:*
  28 +**Running Locally:**
  29 +
28 30 1. Bootstrap Errbit. This will copy over config.yml and also seed the database.
29 31  
30   - rake errbit:bootstrap
  32 + rake errbit:bootstrap
31 33  
32 34 2. Update the config.yml and mongoid.yml files with information about your environment
33 35 3. Install dependencies
34 36  
35   - bundle install
  37 + bundle install
36 38  
37 39 4. Start Server
38 40  
39   - script/rails server
  41 + script/rails server
  42 +
  43 +**Deploying:**
40 44  
41   -*Deploying:*
42 45 1. Bootstrap Errbit. This will copy over config.yml and also seed the database.
43 46  
44   - rake errbit:bootstrap
  47 + rake errbit:bootstrap
45 48  
46 49 2. Update the deploy.rb file with information about your server
47   - 3. cap deploy:setup deploy
  50 + 3. Setup server and deploy
  51 +
  52 + cap deploy:setup deploy
48 53  
49 54 TODO
50 55 ----
51 56  
52   -Add a deployment view
53   -Add ability for watchers to be configured for types of notifications they should receive
  57 +* Add a deployment view
  58 +* Add ability for watchers to be configured for types of notifications they should receive
54 59  
55 60 Contributing
56 61 ------------
... ...