-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
26 lines (23 loc) · 889 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
/*
|--------------------------------------------------------------------------
| Start the Engine
|--------------------------------------------------------------------------
|
| We need to enlighten Node.js development, so let's start the engine,
| turn on the lights. This bootstraps the framework and gets it ready for use,
| then it will load up this application so that we can run it and send
| the responses back to the browser and delight these users.
|
*/
require('./bootstrap/start')(function(app){
/*
|--------------------------------------------------------------------------
| Listen for requests
|--------------------------------------------------------------------------
|
| Once we have the application, we can simply call the listen method,
| which will start to listen for user requests.
|
*/
app.listen();
});