-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.coffee
More file actions
40 lines (33 loc) · 1.03 KB
/
Copy pathapp.coffee
File metadata and controls
40 lines (33 loc) · 1.03 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
express = require('express')
http = require('http')
path = require('path')
app = express();
require('./routes/index')(app)
# all environments
app.set('port', process.env.PORT || 3000)
app.set('views', __dirname + '/views')
app.set('view engine', 'jade')
app.use(express.favicon())
app.use(express.bodyParser())
app.use(express.methodOverride())
app.use(app.router)
app.use(require('stylus').middleware(__dirname + '/public'))
app.use(express.static(path.join(__dirname, 'public')))
# development only
if 'development' == app.get('env')
app.use(express.logger('dev'))
app.use(express.errorHandler())
app.use(require('coffee-middleware')(
src: __dirname + '/public'
))
# production only
if 'production' == app.get('production')
console.log "Booting in production mode."
app.use(express.logger('default'))
app.use(require('coffee-middleware')(
src: __dirname + '/public'
compress: true
once: true
))
http.createServer(app).listen app.get('port'), ->
console.log('Express server listening on port ' + app.get('port'))