2014-04-24 13:53:18 -04:00
# Rake tasks for developers
2014-12-04 10:54:08 -05:00
## Setup db with developer seeds
2014-04-24 13:53:18 -04:00
2014-07-31 12:55:13 -04:00
Note that if your db user does not have advanced privileges you must create the db manually before running this command.
2014-04-24 13:53:18 -04:00
```
bundle exec rake setup
```
2014-12-04 10:54:08 -05:00
The `setup` task is a alias for `gitlab:setup` .
2015-10-31 17:56:24 -04:00
This tasks calls `db:setup` to create the database, calls `add_limits_mysql` that adds limits to the database schema in case of a MySQL database and finally it calls `db:seed_fu` to seed the database.
2014-12-04 15:22:21 -05:00
Note: `db:setup` calls `db:seed` but this does nothing.
2014-12-04 10:54:08 -05:00
2014-04-24 13:53:18 -04:00
## Run tests
2014-07-31 12:55:13 -04:00
This runs all test suites present in GitLab.
2014-04-24 13:53:18 -04:00
```
bundle exec rake test
```
## Generate searchable docs for source code
2014-07-31 12:55:13 -04:00
You can find results under the `doc/code` directory.
2014-04-24 13:53:18 -04:00
```
bundle exec rake gitlab:generate_docs
```
2015-09-03 16:49:13 -04:00
## Generate API documentation for project services (e.g. Slack)
```
bundle exec rake services:doc
```