diff options
-rw-r--r-- | config/application.yml.example.development | 7 | ||||
-rw-r--r-- | doc/install/installation.md | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/config/application.yml.example.development b/config/application.yml.example.development new file mode 100644 index 0000000..a01b6f1 --- /dev/null +++ b/config/application.yml.example.development @@ -0,0 +1,7 @@ +development: + allowed_gitlab_urls: + - 'http://localhost:3000' + gitlab_ci: + host: localhost + port: 5000 + https: false diff --git a/doc/install/installation.md b/doc/install/installation.md index ba0c3c6..c127029 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -109,8 +109,11 @@ You can use either MySQL or PostgreSQL. ## 6. Setup application # Edit application settings + # Production sudo -u gitlab_ci -H cp config/application.yml.example config/application.yml sudo -u gitlab_ci -H editor config/application.yml + # Development + #sudo -u gitlab_ci -H cp config/application.yml.example.development config/application.yml # Edit web server settings sudo -u gitlab_ci -H cp config/unicorn.rb.example config/unicorn.rb |