-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
66 lines (48 loc) · 1.5 KB
/
app.js
File metadata and controls
66 lines (48 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* Module dependencies
*/
var express = require('express'),
routes = require('./routes'),
// api = require('./routes/api'),
http = require('http'),
path = require('path'),
twilio = require('twilio'),
bodyParser = require('body-parser'),
parseRequest = require('./request-parser');
var app = module.exports = express();
/**
* Configuration
*/
app.use(bodyParser.urlencoded({ extended : true }));
app.use(bodyParser.json());
// All environments
app.set('port', process.env.PORT || 8080);
app.set('views', __dirname + '/views');
app.engine('html', require('ejs').renderFile);
app.set('view engine', 'html');
app.use(express.static(path.join(__dirname, 'public')));
/**
* Routes
*/
// Serve index and view partials
app.get('/', routes.index);
app.get('/partials/:name', routes.partials);
// Configure queries to the database
// app.post('/users', api.create);
// app.post('/verify', api.verify);
// app.get('/user/:phone', api.getUser)
app.post("/sms", function(req, res) {
var client = new twilio.RestClient(process.env.TWILIO_ACCOUNT_SID,
process.env.TWILIO_AUTH_TOKEN);
parseRequest(client, req.body);
});
// Redirect all others to the index (HTML5 history)
app.get('*', routes.index);
/**
* Start Server
*/
var server = app.listen(app.get('port'), function () {
var host = server.address().address;
var port = server.address().port;
console.log('Piper listening at http://%s:%s', host, port);
});