forked from meteor-vegas/website
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.example.json
More file actions
47 lines (47 loc) · 1.26 KB
/
settings.example.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"environment" : "development",
"production" : {
"meetup" : {
"oauth_key" : "<production_meetup_consumer_key>",
"oauth_secret" : "<production_meetup_consumer_secret>",
"api_key" : "<meetup_api_key>",
"group_urlname" : "Meteor-Montreal"
}
},
"development" : {
"meetup" : {
"oauth_key" : "<development_meetup_consumer_key>",
"oauth_secret" : "<development_meetup_consumer_secret>",
"api_key" : "<meetup_api_key>",
"group_urlname" : "Meteor-Montreal"
}
},
"public" : {
"meetup" : {
"group_name" : "Meteor Montreal",
"group_urlname" : "Meteor-Montreal",
},
"links" : {
"meetup": "http://www.meetup.com/Meteor-Montreal/",
"twitter": "https://twitter.com/MeteorMTL",
"github": "https://github.com/meteormtl"
},
"sponsors" : [
{
"title" : "La Commune",
"url" : "http://www.lacommune.ca",
"image" : "/sponsors/lacommune.jpg"
},
{
"title" : "Bitcoin Embassy",
"url" : "http://bitcoinembassy.ca",
"image" : "/sponsors/bitcoin_embassy.png"
},
{
"title" : "Smashing Boxes",
"url" : "http://smashingboxes.com",
"image" : "/sponsors/smashingboxes.jpg"
}
]
}
}