-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ts
46 lines (40 loc) · 1.28 KB
/
index.ts
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
export default {
// Name of your event
EVENT_NAME: "Hack the North 2019",
// Location of mentor hub
MENTOR_HUB: "E7 CND",
// Channel ID of your private "mentors" slack group
MENTOR_CHANNEL: "GMXXXXXX",
// Channel ID of where to post stats updates
STATS_CHANNEL: "CMXXXXXX",
// Username of your bot
BOT_USERNAME: "mentorship_bot",
// Access token for your bot (should start with xoxb)
BOT_ACCESS_TOKEN: "xoxb-abcdefghijk-123456789-a1b2c3d4e5",
// Mentor lead slack username
MENTOR_LEAD: `<@UABC123>`,
// Signing secret of your app
SIGNING_SECRET: "abcdefhijklmnopqrstuvwxyz",
// Client ID of your Slack App
SLACK_CLIENT_ID: "1234567890.1234567890",
// Client Secret of your Slack App
SLACK_CLIENT_SECRET: "abcdefghijklmnopqrstuvwxyz",
// Event start time (when the bot should welcome people and start posting stats)
// ISO 8601
EVENT_START: "2019-09-13T21:00:00-0400",
// Event end time (when the bot should stop)
// ISO 8601
EVENT_END: "2019-09-15T12:00:00-0400",
// List of available skills
SKILLS: {
backend: "Backend",
frontend: "Frontend",
android: "Android",
ios: "iOS",
"react-native": "React Native",
vr: "Virtual Reality",
design: "Design",
hardware: "Hardware"
// add more... (or take some away)
}
};