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'
|
|
|
|
|
|
|
|
const argv = parseArgs(process.argv.slice(2), {
|
|
|
|
alias: {
|
|
|
|
h: 'help',
|
|
|
|
p: 'port'
|
|
|
|
},
|
|
|
|
boolean: ['h'],
|
|
|
|
default: {
|
|
|
|
p: 3000
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
<dir> is the directory that contains the compiled .next folder
|
|
|
|
created by running \`next build\`.
|
|
|
|
If no directory is provided, the current directory will be assumed.
|
|
|
|
|
|
|
|
Options
|
|
|
|
--port, -p A port number on which to start the application
|
|
|
|
--help, -p Displays this message
|
|
|
|
`)
|
|
|
|
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 })
|
2016-10-05 23:52:50 +00:00
|
|
|
srv.start(argv.port)
|
|
|
|
.then(() => {
|
2016-12-06 20:39:26 +00:00
|
|
|
if (!process.env.NOW) {
|
|
|
|
console.log(`> Ready on http://localhost:${argv.port}`)
|
|
|
|
}
|
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
|
|
|
})
|