summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-20 18:53:07 +0100
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-20 18:53:07 +0100
commit27ff15ad3e19bfbd6143f43cc61043fd78ffd3e1 (patch)
treec0200ce4c2504f34dd801e6df54588f44b6def44
parent9bc315bb2573f6925b1758ce90dab5fd6fbfc690 (diff)
downloadgitlab-ce-27ff15ad3e19bfbd6143f43cc61043fd78ffd3e1.tar.gz
Remove development.md
-rw-r--r--doc/development.md36
1 files changed, 0 insertions, 36 deletions
diff --git a/doc/development.md b/doc/development.md
deleted file mode 100644
index b7213adc1e0..00000000000
--- a/doc/development.md
+++ /dev/null
@@ -1,36 +0,0 @@
-## Development tips:
-
-
-### Installation
-
-Install the Gitlab development in a virtual machine with the [Gitlab Vagrant virtual machine](https://github.com/gitlabhq/gitlab-vagrant-vm). Installing it in a virtual machine makes it much easier to set up all the dependencies for integration testing.
-
-
-### Start application in development mode
-
-#### 1. Via foreman
-
- bundle exec foreman start -p 3000
-
-#### 2. Manually
-
- bundle exec rails s
- bundle exec rake environment resque:work QUEUE=* VVERBOSE=1
-
-
-### Test DB setup & seed
-
- bundle exec rake db:setup RAILS_ENV=test
- bundle exec rake db:seed_fu RAILS_ENV=test
-
-
-### Run the Tests
-
- # All in one
- bundle exec rake gitlab:test
-
- # Rspec
- bundle exec rake spec
-
- # Spinach
- bundle exec rake spinach