diff options
author | Rémy Coutable <remy@rymai.me> | 2019-04-17 12:23:06 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2019-04-23 11:43:53 +0200 |
commit | 2537b0c1e0619f03799092ed59c51692baa2cf24 (patch) | |
tree | 416f3d4c4bf625dc5215726daac8a7dcd2340d2e /doc/development/rake_tasks.md | |
parent | 383642e10056101dc29d1242c2158b9d911386a9 (diff) | |
download | gitlab-ce-2537b0c1e0619f03799092ed59c51692baa2cf24.tar.gz |
Provide a new gitlab:seed:issues taskce-11199-add-a-rake-task-to-seed-insights-data-for-a-given-project
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/development/rake_tasks.md')
-rw-r--r-- | doc/development/rake_tasks.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/development/rake_tasks.md b/doc/development/rake_tasks.md index dcb32c89f65..1ae69127295 100644 --- a/doc/development/rake_tasks.md +++ b/doc/development/rake_tasks.md @@ -12,6 +12,22 @@ The `setup` task is an alias for `gitlab:setup`. This tasks calls `db:reset` 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. Note: `db:setup` calls `db:seed` but this does nothing. +### Seeding issues for all or a given project + +You can seed issues for all or a given project with the `gitlab:seed:issues` +task: + +```shell +# All projects +bin/rake gitlab:seed:issues + +# A specific project +bin/rake "gitlab:seed:issues[group-path/project-path]" +``` + +By default, this seeds an average of 2 issues per week for the last 5 weeks per +project. + ### Automation If you're very sure that you want to **wipe the current database** and refill |