Add sanitize option to documentation.
This commit is contained in:
parent
553f3aba48
commit
cb4d8eff4c
3 changed files with 5 additions and 1 deletions
|
@ -42,7 +42,7 @@ Please send a merge request with a tested solution or a merge request with a fai
|
|||
1. **Observed behavior**
|
||||
1. **Relevant logs and/or screenshots:** Please use code blocks (\`\`\`) to format console output, logs, and code as it's very hard to read otherwise.
|
||||
1. **Output of checks**
|
||||
* Results of GitLab [Application Check](doc/install/installation.md#check-application-status) (`sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production`); we will only investigate if the tests are passing
|
||||
* Results of GitLab [Application Check](doc/install/installation.md#check-application-status) (`sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production SANITIZE=true`); we will only investigate if the tests are passing
|
||||
* Version of GitLab you are running; we will only investigate issues in the latest stable and development releases as per the [maintenance policy](MAINTENANCE.md)
|
||||
* Add the last commit sha1 of the GitLab version you used to replicate the issue (obtainable from the help page)
|
||||
* Describe your setup (use relevant parts from `sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production`)
|
||||
|
|
|
@ -331,6 +331,8 @@ To make sure you didn't miss anything run a more thorough check with:
|
|||
|
||||
If all items are green, then congratulations on successfully installing GitLab!
|
||||
|
||||
NOTE: Supply `SANITIZE=true` environment variable to `gitlab:check` to omit project names from the output of the check command.
|
||||
|
||||
### Initial Login
|
||||
|
||||
Visit YOUR_SERVER in your web browser for your first GitLab login. The setup has created an admin account for you. You can use it to log in:
|
||||
|
|
|
@ -63,6 +63,8 @@ sudo gitlab-rake gitlab:check
|
|||
bundle exec rake gitlab:check RAILS_ENV=production
|
||||
```
|
||||
|
||||
NOTE: Use SANITIZE=true for gitlab:check if you want to omit project names from the output.
|
||||
|
||||
Example output:
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue