File tree 6 files changed +9
-33
lines changed
6 files changed +9
-33
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,25 @@ var app = express();
13
13
14
14
// all environments
15
15
app . set ( 'port' , process . env . PORT || 3000 ) ;
16
- app . set ( 'views' , __dirname + '/views ' ) ;
16
+ app . set ( 'views' , __dirname + '/app ' ) ;
17
17
app . set ( 'view engine' , 'ejs' ) ;
18
+ app . engine ( 'html' , require ( 'ejs' ) . renderFile ) ;
18
19
app . use ( express . favicon ( ) ) ;
19
20
app . use ( express . logger ( 'dev' ) ) ;
20
21
app . use ( express . bodyParser ( ) ) ;
21
22
app . use ( express . methodOverride ( ) ) ;
22
23
app . use ( app . router ) ;
23
- app . use ( express . static ( path . join ( __dirname , 'public' ) ) ) ;
24
24
25
25
// development only
26
26
if ( 'development' == app . get ( 'env' ) ) {
27
+ app . use ( express . static ( path . join ( __dirname , 'app' ) ) ) ;
27
28
app . use ( express . errorHandler ( ) ) ;
28
29
}
30
+ else {
31
+ app . use ( express . static ( path . join ( __dirname , 'dist' ) ) ) ;
32
+ }
29
33
30
34
app . get ( '/' , routes . index ) ;
31
- app . get ( '/users' , user . list ) ;
32
35
33
36
http . createServer ( app ) . listen ( app . get ( 'port' ) , function ( ) {
34
37
console . log ( 'Express server listening on port ' + app . get ( 'port' ) ) ;
Original file line number Diff line number Diff line change 6
6
< head >
7
7
< meta charset ="utf-8 ">
8
8
< meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 ">
9
- < title > </ title >
9
+ < title > < %= title % > < /title >
10
10
< meta name ="description " content ="">
11
11
< meta name ="viewport " content ="width=device-width ">
12
12
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
*/
5
5
6
6
exports . index = function ( req , res ) {
7
- res . render ( 'index' , { title : 'Express' } ) ;
8
- } ;
7
+ res . render ( 'index.html ' , { title : 'Express' } ) ;
8
+ } ;
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments