Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-24 21:53:18 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-24 21:53:18 +0400
commit7e10d1017819ea0be41887803e9b4d6edd92bf49 (patch)
treead98d9307d04c68ada280ed595d63383345db3f4 /doc/development/rake_tasks.md
parent2eaca5453654f4c5e773067f303d6002268cd06e (diff)
Add doc file for dev rake tasks
Diffstat (limited to 'doc/development/rake_tasks.md')
-rw-r--r--doc/development/rake_tasks.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/development/rake_tasks.md b/doc/development/rake_tasks.md
new file mode 100644
index 00000000000..9e75b3a6275
--- /dev/null
+++ b/doc/development/rake_tasks.md
@@ -0,0 +1,25 @@
+# Rake tasks for developers
+
+## Setup db with developer seeds:
+
+Note that if your db user does not have advanced privilegies you must create db manually before run this command
+
+```
+bundle exec rake setup
+```
+
+## Run tests
+
+This runs all test suite present in GitLab
+
+```
+bundle exec rake test
+```
+
+## Generate searchable docs for source code
+
+You can find results under `doc/code` directory
+
+```
+bundle exec rake gitlab:generate_docs
+```