forked from elementary/houston
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.js
More file actions
88 lines (67 loc) · 1.73 KB
/
config.example.js
File metadata and controls
88 lines (67 loc) · 1.73 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
/**
* config.js
* Stores configuration for all parts of Houston
*
* @exports {Object} default - Houston configuration
*/
// 'test' 'development' 'production'
// export const env = 'development'
// https://github.com/settings/developers
export const github = {
client: '78zx9c4vb8xc4v5647ar',
secret: '4ra56dsv489asd4r56b456a489sd7ft89a75s4b8',
// User access token for submitting issues
access: 'ar4sd56v456as4edr564s5dv6a45sr156we48zxw',
// Post data to GitHub?
post: false,
// Enable GitHub hooks?
hook: false
}
// GitHub identifiers for admin, reviewer, and beta groups
export const rights = false
/*
export const rights = {
// https://developer.github.com/v3/orgs/teams/#get-team
beta: 'elementary',
admin: 213128,
review: 1880652
}
*/
export const jenkins = false
/*
export const jenkins = {
url: 'http://john:1234@jenkins.elementaryos.org',
public: 'ZPYYkQFAL7nShsnczM4uWGmjbVPLZCp7',
secret: 'ft2DH0i6zixHGpShlWt99vgCL7uBpqKT',
// Job name for building deb files
job: 'deb-new-test'
}
*/
export const aptly = false
/*
export const aptly = {
url: 'http://localhost:8080/api',
passphrase: 'gpgkeyphrase',
// Repository names
review: 'review',
stable: 'houston'
}
*/
export const database = 'mongodb://localhost/houston-dev'
export const server = {
secret: 'hiGvpfbJhSNlC15OXiCxXWcEUYVeKBqb',
// Full route including port and protocol, without trailing slash
url: 'http://localhost:3000'
// port: 3000
}
export const socket = {
public: 'VcSpPL255upq4vF5nGJjmOWVUgbQGYcc',
private: 'KUfwXUo3HDVvErvAyVp113SLE3zcQLZm'
}
export const log = {
console: true,
// 'silly' 'debug' 'verbose' 'info' 'warn' 'error'
level: 'silly',
// Create 'error.log' and 'info.log'
files: false
}