summaryrefslogtreecommitdiff
path: root/doc/development/rake_tasks.md
blob: 9e75b3a62754d9c93679a3aa8fd561d78ebf371c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
```