-
Notifications
You must be signed in to change notification settings - Fork 10
/
boss.yml.example
78 lines (67 loc) · 2 KB
/
boss.yml.example
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
project_name: 'projectname'
project_description: 'Project Description'
repository_url: YOUR_GIT_REPOSITORY_URL
branch_url: '{repository_url}/tree/{branch}'
user: username
# port defaults to 22
port: SERVER_SSH_PORT
# defaults to ~/.ssh/id_rsa
key_filename: /path/to/private/key/file
logging:
files:
- /path/to/log/file.log
- /path/to/another/log/file.log
stages:
dev:
host: dev.your-application.com
public_url: 'https://dev.your-application.com'
branch: dev
qa:
host: qa.your-application.com
public_url: 'https://qa.your-application.com'
branch: qa
staging:
host: staging.your-application.com
public_url: 'https://staging.your-application.com'
branch: staging
production:
host: your-application.com
public_url: 'https://your-application.com'
branch: master
user: priduction_username
port: PRODUCTION_SSH_PORT
key_filename: /path/to/production/private/key/file
logging:
files:
- /path/to/production/log/file.log
- /path/to/production/another/log/file.log
# Define custom scripts here.
scripts:
hello: 'echo "Hello World"'
notifications:
slack:
enabled: true
# Slack path that identifies your slack channel
# following https://hooks.slack.com/services.
# Note: Leading slash is required.
# For example:
# endpoint: /xxxxxxxxx/xxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxx
#
endpoint: SLACK_ENDPOINT_HERE
hipchat:
enabled: true
#
# Whether this message should trigger a user
# notification (change the tab color, play a sound,
# notify mobile phones, etc).
notify: true
#
# Company name used in Hipchat. You can find it in your
# Hipchat url
company_name: COMPANY_NAME
#
# Room id
room_id: ROOM_ID
#
# Access token
auth_token: AUTH_TOKEN