2016-10-05 23:52:50 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
2016-10-06 11:05:52 +00:00
|
|
|
import { resolve } from 'path'
|
2016-10-05 23:52:50 +00:00
|
|
|
import parseArgs from 'minimist'
|
|
|
|
import Server from '../server'
|
|
|
|
|
2017-01-16 03:58:45 +00:00
|
|
|
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
|
|
|
|
|
2016-10-05 23:52:50 +00:00
|
|
|
const argv = parseArgs(process.argv.slice(2), {
|
|
|
|
alias: {
|
|
|
|
h: 'help',
|
2017-02-12 11:26:10 +00:00
|
|
|
H: 'hostname',
|
2016-10-05 23:52:50 +00:00
|
|
|
p: 'port'
|
|
|
|
},
|
|
|
|
boolean: ['h'],
|
2017-02-12 16:23:42 +00:00
|
|
|
string: ['H'],
|
2017-02-12 11:26:10 +00:00
|
|
|
default: { p: 3000 }
|
2016-10-05 23:52:50 +00:00
|
|
|
})
|
|
|
|
|
2017-02-12 16:23:42 +00:00
|
|
|
if (argv.hostname === '') {
|
|
|
|
console.error(`> Provided hostname argument has no value`)
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
|
2016-12-18 20:28:34 +00:00
|
|
|
if (argv.help) {
|
|
|
|
console.log(`
|
|
|
|
Description
|
|
|
|
Starts the application in production mode.
|
|
|
|
The application should be compiled with \`next build\` first.
|
|
|
|
|
|
|
|
Usage
|
|
|
|
$ next start <dir> -p <port>
|
|
|
|
|
2017-04-06 10:09:26 +00:00
|
|
|
<dir> is the directory that contains the compiled dist folder
|
2016-12-18 20:28:34 +00:00
|
|
|
created by running \`next build\`.
|
|
|
|
If no directory is provided, the current directory will be assumed.
|
2017-04-06 10:09:26 +00:00
|
|
|
You can set a custom dist folder in config https://github.com/zeit/next.js#custom-configuration
|
2016-12-18 20:28:34 +00:00
|
|
|
|
|
|
|
Options
|
|
|
|
--port, -p A port number on which to start the application
|
2017-02-12 11:26:10 +00:00
|
|
|
--hostname, -H Hostname on which to start the application
|
2017-01-15 01:31:09 +00:00
|
|
|
--help, -h Displays this message
|
2016-12-18 20:28:34 +00:00
|
|
|
`)
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
|
2016-10-06 11:05:52 +00:00
|
|
|
const dir = resolve(argv._[0] || '.')
|
2016-10-05 23:52:50 +00:00
|
|
|
|
2016-10-06 11:05:52 +00:00
|
|
|
const srv = new Server({ dir })
|
2017-02-12 11:26:10 +00:00
|
|
|
srv.start(argv.port, argv.hostname)
|
2016-10-05 23:52:50 +00:00
|
|
|
.then(() => {
|
2016-12-06 20:39:26 +00:00
|
|
|
if (!process.env.NOW) {
|
2017-02-12 16:23:42 +00:00
|
|
|
console.log(`> Ready on http://${argv.hostname ? argv.hostname : 'localhost'}:${argv.port}`)
|
2016-12-06 20:39:26 +00:00
|
|
|
}
|
2016-10-05 23:52:50 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error(err)
|
2016-10-25 15:03:24 +00:00
|
|
|
process.exit(1)
|
2016-10-05 23:52:50 +00:00
|
|
|
})
|