-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.js
64 lines (60 loc) · 1.41 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
var config = {};
// Truck locations by ID. See: http://bostonfeed.me/backend/getLocation.php
config.locations = [
'dewey',
'greenway-dewey-congress',
// clarendon-trinity,
// greenway-roweswharf,
// bostoncommon,
// prudential,
// seaport-wormwood,
// constantcontact,
// fenway-landmark,
// harvard-science,
// bu-east,
// mgh,
// stuart-trinity,
// watertown-arsenal,
// cityhallplaza,
// bostonpubliclibrary,
// innovationdistrict,
// chinatown-gate,
// bmc,
// watertown-athena,
// longwood,
// burlington,
// neu,
// alewife-vecna,
// federal-101,
// greenway-milk,
// lexington,
// greenway-carousel,
// sowa,
// financial-milk-kilby,
// dorchester-lena-park,
// charlestown-bha,
// neu-centennial,
// dorchester-epiphany,
// charlestown-edwards,
// dorchester-olmsted-green,
// southend-community-health,
// charlestown-constitution-coop,
// maverick-square,
// brighamwomens,
// mit-kandell,
// financial-high-batterymarch,
// bu-west,
// alewife-cbre,
// courthouse,
// charlestown,
// greenway-purchasehigh,
// southendopenmarket-inkblock,
// chinatown-boylston-washington,
// cambridge-rogers
];
// The incoming Slack webhook URL.
config.slack_url = process.env.SLACK_URL || 'https://slack_webhook_url_goes_here';
config.job_time = process.env.JOB_TIME || '00 16 * * 1-5';
config.slack_bot_name = 'FoodTruckBot';
config.slack_bot_emoji = ':truck:';
module.exports = config;