Use proper markdown syntax for code in README.md
This commit is contained in:
parent
69159634d6
commit
bb7490771e
1 changed files with 10 additions and 10 deletions
18
README.md
18
README.md
|
@ -57,11 +57,11 @@ 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:
|
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
|
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
|
2. Start it with [Foreman](https://github.com/ddollar/foreman) in development model
|
||||||
|
|
||||||
|
@ -69,27 +69,27 @@ bundle exec foreman start -p 3000
|
||||||
|
|
||||||
3. Start it manually in development mode
|
3. Start it manually in development mode
|
||||||
|
|
||||||
> bundle exec rails s
|
bundle exec rails s
|
||||||
> bundle exec rake sidekiq:start
|
bundle exec rake sidekiq:start
|
||||||
|
|
||||||
### Running the tests
|
### Running the tests
|
||||||
|
|
||||||
* Seed the database with
|
* Seed the database with
|
||||||
|
|
||||||
> bundle exec rake db:setup RAILS_ENV=test
|
bundle exec rake db:setup RAILS_ENV=test
|
||||||
> bundle exec rake db:seed_fu RAILS_ENV=test
|
bundle exec rake db:seed_fu RAILS_ENV=test
|
||||||
|
|
||||||
* Run all tests
|
* Run all tests
|
||||||
|
|
||||||
> bundle exec rake gitlab:test
|
bundle exec rake gitlab:test
|
||||||
|
|
||||||
* Rspec unit and functional tests
|
* Rspec unit and functional tests
|
||||||
|
|
||||||
> bundle exec rake spec
|
bundle exec rake spec
|
||||||
|
|
||||||
* Spinach integration tests
|
* Spinach integration tests
|
||||||
|
|
||||||
> bundle exec rake spinach
|
bundle exec rake spinach
|
||||||
|
|
||||||
### Getting help
|
### Getting help
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue