summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-03 17:51:24 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-03-03 17:51:24 +0200
commitbb7490771e0e19ed28cef7d20ed6f70650d3a78b (patch)
tree3be9b80380d90c0045ecb3571e3653588a7e0f78 /README.md
parent69159634d616ab1b40f053eda7847a40c98d0943 (diff)
downloadgitlab-ce-bb7490771e0e19ed28cef7d20ed6f70650d3a78b.tar.gz
Use proper markdown syntax for code in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 236f5b9cff3..847bccb0577 100644
--- a/README.md
+++ b/README.md
@@ -57,39 +57,39 @@ You can either follow the "ordinary" Installation guide to install it on a machi
1. The Installation guide contains instructions to download an init script and run that on boot. With the init script you can also start GitLab with:
-> sudo service gitlab start
+ sudo service gitlab start
or
-> sudo /etc/init.d/gitlab restart
+ sudo /etc/init.d/gitlab restart
2. Start it with [Foreman](https://github.com/ddollar/foreman) in development model
-bundle exec foreman start -p 3000
+ bundle exec foreman start -p 3000
3. Start it manually in development mode
-> bundle exec rails s
-> bundle exec rake sidekiq:start
+ bundle exec rails s
+ bundle exec rake sidekiq:start
### Running the tests
* Seed the database with
-> bundle exec rake db:setup RAILS_ENV=test
-> bundle exec rake db:seed_fu RAILS_ENV=test
+ bundle exec rake db:setup RAILS_ENV=test
+ bundle exec rake db:seed_fu RAILS_ENV=test
* Run all tests
-> bundle exec rake gitlab:test
+ bundle exec rake gitlab:test
* Rspec unit and functional tests
-> bundle exec rake spec
+ bundle exec rake spec
* Spinach integration tests
-> bundle exec rake spinach
+ bundle exec rake spinach
### Getting help