-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmain.js
More file actions
29 lines (25 loc) · 806 Bytes
/
main.js
File metadata and controls
29 lines (25 loc) · 806 Bytes
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
#!/usr/bin/env node
/** Node.js server for a bot
*
* Herein lies the Node.js serverside script to tell node what to do to ensure
* we get all the magical goodness that is:
* (Karma + Sassy) * Facebook - Hipchat = Concierge
* Note: it does waaaaaaay more than this now. It even runs on slack!
*
* Written By:
* Matthew Knox
*
* Contributors:
* Dion Woolley
* Jay Harris
* Matt Hartstonge
* (Others, mainly strange people)
*
* License:
* MIT License. All code unless otherwise specified is
* Copyright (c) Matthew Knox and Contributors 2016.
*/
'use strict';
const startup = require('./core/startup/startup.js'),
direct = require.main === module;
module.exports = startup.run(direct, process.argv.slice(2), __dirname);