-
Notifications
You must be signed in to change notification settings - Fork 25
/
config.js.sample
81 lines (63 loc) · 2.03 KB
/
config.js.sample
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
module.exports = function(config) {
// For faster development, uncomment these:
// Do not use uglify
// config.uglify = false;
// Do not minify css
// config.cssmin = false;
// Do not minify images
// config.minifyImages = false;
// Development web server
config.server.host = '0.0.0.0';
config.server.port = '8000';
// Set to false to disable it:
// config.server = false;
// Weinre Remote debug server
//
// config.weinre = {
// httpPort: 8001,
// boundHost: 'localhost',
// verbose: false,
// debug: false,
// readTimeout: 5,
// deathTimeout: 15
// };
// SwellRT server
// Don't use Docker for SwellRT
// config.swellrt.docker = false;
config.swellrt.protocol = 'http://';
config.swellrt.host = 'localhost';
config.swellrt.port = '9898';
// angular-swellrt
// Use local version
// config.angularSwellrt.path = '../angular-swellrt';
// Piwik stats
// config.piwik = {
// server = '//statistics.yourdomain.org/', // Don't forget the trailing slash!
// siteId = 1,
// };
// WaveIds of the community and project when the support
// activity is done.
// If present, a support link will be displayed in the app menu
//
// Example:
// config.app.support = {
// communityId: 'local.net/s+EWN1NKmVbsO',
// projectId: 'local.net/s+3WKINJhZMp8'
// };
// 3rd party components
// config.vendor.js.push('.bower_components/lib/dist/lib.js');
// config.vendor.fonts.push('.bower_components/font/dist/*');
// Deploy options
// config.deploy.files.origin = 'origin'
//
// config.deploy.swellrt.args =
// '-v /usr/local/etc/teem-swellrt:/usr/local/swellrt/config ' +
// '-v /var/local/log/teem-swellrt:/usr/local/swellrt/log ' +
// '--link teem-swellrt-mongo:mongo ' +
// '-h swellrt.p2pvalue.eu -p 127.0.0.1:9899:9898';
// config.deploy.swellrt.ssh = {
// host: 'swellrt.p2pvalue.eu',
// username: 'user',
// privateKey: require('fs').readFileSync('/home/user/.ssh/id_rsa')
// };
};