This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.js
103 lines (100 loc) · 2.7 KB
/
config.js
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
'use strict'
/*jshint camelcase: false */
var e = process.env
module.exports = {
title: e.TITLE || '.concat() 2015 Twitterwall',
hashtag: e.HASHTAG || '#concat15',
port: e.PORT || 8000,
twitter: {
throttle: 1000,
tracks: (e.HASHTAGS || '#concat,#concat15,#concat2015').split(','),
users: (e.USERS || 'conc_at').split(','),
tweetHistory: true,
auth: {
access_token: e.ACCESS_TOKEN,
access_token_secret: e.ACCESS_TOKEN_SECRET,
consumer_key: e.CONSUMER_KEY,
consumer_secret: e.CONSUMER_SECRET
}
},
lanyrd: {
overwriteDate: '2015-03-07', // for debugging
year: e.LANYRD_YEAR || '2015',
id: e.LANYRD_ID || 'concat',
showNext: 15000,
roomColors: {
'Audimax': '#c30813',
'Room 110': '#169c19',
'Lounge': '#c35a18'
}
},
admin: {
enableAPI: e.ADMIN_USER && e.ADMIN_PASSWORD,
username: e.ADMIN_USER,
password: e.ADMIN_PASSWORD,
blocked: e.BLOCKED_USERS ? e.BLOCKED_USERS.split(',') : [],
blockRetweets: true,
blockPossiblySensitive: true
},
sponsors: [{
image: 'https://conc.at/images/logos/[email protected]',
name: 'Zalando Technology',
duration: 20000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Pusher',
duration: 20000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Braintree Payments',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Amazon Web Services',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Travis CI',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Hoodie',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Mandrill',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'gesagt.getan',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Siili',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'the diamond:dogs|group',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'codeschool',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Transloadit',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'techtrrrs',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'Coworking Salzburg',
duration: 10000
}, {
image: 'https://conc.at/images/logos/[email protected]',
name: 'University of Applied Sciences Salzburg',
duration: 10000
}]
}