diff options
Diffstat (limited to 'doc/development/profiling.md')
-rw-r--r-- | doc/development/profiling.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/profiling.md b/doc/development/profiling.md index 1d6a4e5f4bf..e1d1d2e33fa 100644 --- a/doc/development/profiling.md +++ b/doc/development/profiling.md @@ -95,7 +95,7 @@ Sherlock is a custom profiling tool built into GitLab. Sherlock is _only_ available when running GitLab in development mode _and_ when setting the environment variable `ENABLE_SHERLOCK` to a non empty value. For example: -``` +```sh ENABLE_SHERLOCK=1 bundle exec rails s ``` @@ -108,7 +108,7 @@ Bullet adds quite a bit of logging noise it's disabled by default. To enable Bullet, set the environment variable `ENABLE_BULLET` to a non-empty value before starting GitLab. For example: -``` +```sh ENABLE_BULLET=true bundle exec rails s ``` |