Skip to content

Commit 6841ce4

Browse files
committed
merged express app with angularjs/yeoman
1 parent 15f77b2 commit 6841ce4

File tree

6 files changed

+9
-33
lines changed

6 files changed

+9
-33
lines changed

app.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,25 @@ var app = express();
1313

1414
// all environments
1515
app.set('port', process.env.PORT || 3000);
16-
app.set('views', __dirname + '/views');
16+
app.set('views', __dirname + '/app');
1717
app.set('view engine', 'ejs');
18+
app.engine('html', require('ejs').renderFile);
1819
app.use(express.favicon());
1920
app.use(express.logger('dev'));
2021
app.use(express.bodyParser());
2122
app.use(express.methodOverride());
2223
app.use(app.router);
23-
app.use(express.static(path.join(__dirname, 'public')));
2424

2525
// development only
2626
if ('development' == app.get('env')) {
27+
app.use(express.static(path.join(__dirname, 'app')));
2728
app.use(express.errorHandler());
2829
}
30+
else {
31+
app.use(express.static(path.join(__dirname, 'dist')));
32+
}
2933

3034
app.get('/', routes.index);
31-
app.get('/users', user.list);
3235

3336
http.createServer(app).listen(app.get('port'), function(){
3437
console.log('Express server listening on port ' + app.get('port'));

app/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<head>
77
<meta charset="utf-8">
88
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
9-
<title></title>
9+
<title><%= title %></title>
1010
<meta name="description" content="">
1111
<meta name="viewport" content="width=device-width">
1212
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->

public/stylesheets/style.css

-8
This file was deleted.

routes/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
*/
55

66
exports.index = function(req, res){
7-
res.render('index', { title: 'Express' });
8-
};
7+
res.render('index.html', { title: 'Express' });
8+
};

routes/user.js

-8
This file was deleted.

views/index.ejs

-11
This file was deleted.

0 commit comments

Comments
 (0)