-
Notifications
You must be signed in to change notification settings - Fork 141
/
index.js
34 lines (26 loc) · 991 Bytes
/
index.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
var express = require('express');
var app = express();
var port = process.env.PORT || 3030;
var apiPort = process.env.API_PORT || 3031;
var api = require('./lib/api');
var middleware = require('./app/router/middleware');
/**
* This initializes our routes.
*/
var router = require('./app/initialize');
// Allow directly requiring '.jsx' files.
require('node-jsx').install({extension: '.jsx'});
app.use(express.static(__dirname + '/public'));
// Mount the routes defined in `./app/routes` on our server.
app.use(middleware(router));
// On the client, we want to be able to just send API requests to the
// main web server using a relative URL, so we proxy requests to the
// API server here.
app.use('/api', api.proxyMiddleware(apiPort));
app.listen(port);
// Run the API server on a separate port, so we can make
// HTTP requests to it from within our main app.
api.listen(apiPort);
console.log('Tutorial running on port %s; API on port %s',
port,
apiPort);