2016-11-08 00:18:26 +00:00
|
|
|
#!/usr/bin/env node
|
2016-11-07 01:34:58 +00:00
|
|
|
|
|
|
|
const fs = require('fs')
|
|
|
|
const Nuxt = require('../')
|
2016-11-09 22:59:41 +00:00
|
|
|
const Server = require('../lib/server')
|
2016-11-07 01:34:58 +00:00
|
|
|
const { resolve } = require('path')
|
|
|
|
|
|
|
|
const rootDir = resolve(process.argv.slice(2)[0] || '.')
|
|
|
|
const nuxtConfigFile = resolve(rootDir, 'nuxt.config.js')
|
|
|
|
let options = {}
|
|
|
|
if (fs.existsSync(nuxtConfigFile)) {
|
|
|
|
options = require(nuxtConfigFile)
|
|
|
|
}
|
|
|
|
if (typeof options.rootDir !== 'string') {
|
|
|
|
options.rootDir = rootDir
|
|
|
|
}
|
|
|
|
|
2016-11-10 18:34:59 +00:00
|
|
|
options._build = false // Disable building
|
2016-11-09 22:59:41 +00:00
|
|
|
options.dev = false // Force production mode (no webpack middlewares called)
|
|
|
|
|
2016-11-07 01:34:58 +00:00
|
|
|
new Nuxt(options)
|
|
|
|
.then((nuxt) => {
|
|
|
|
new Server(nuxt)
|
|
|
|
.listen(process.env.PORT, process.env.HOST)
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error(err)
|
2016-11-10 01:19:47 +00:00
|
|
|
process.exit(1)
|
2016-11-07 01:34:58 +00:00
|
|
|
})
|