summaryrefslogtreecommitdiff
path: root/config/application.yml.example
blob: 124d147e7db8140008842a55f64496276f4127b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
defaults: &defaults
  gitlab_server:
    url: 'https://gitlab.example.com/' # Replace with your gitlab server url
    app_id: ''
    app_secret: ''

  ## Gitlab CI settings  
  gitlab_ci:
    ## Web server settings
    host: localhost
    port: 80
    https: false

    ## Email settings
    # Email address used in the "From" field in mails sent by GitLab-CI
    email_from: gitlab-ci@localhost
  
    # Email address of your support contact (default: same as email_from)
    support_email: support@localhost
  
    # Default project notifications settings: 
    #
    # Send emails only on broken builds (default: true)
    # all_broken_builds: true
    # 
    # Add pusher to recipients list (default: false)
    # add_pusher: true
    
  gravatar:
    enabled: true
    plain_url: "http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=mm"
    ssl_url:   "https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=mm"


development:
  <<: *defaults

test:
  <<: *defaults
  gitlab_server:
    url: 'http://demo.gitlab.com/' 
    app_id: 'id'
    app_secret: 'secret'
  gitlab_ci:
    host: localhost
    port: 80
    https: false

production:
  <<: *defaults