rsnext/bin/next-start

61 lines
1.3 KiB
Text
Raw Normal View History

2016-10-06 01:52:50 +02:00
#!/usr/bin/env node
2016-10-06 13:05:52 +02:00
import { resolve } from 'path'
2016-10-06 01:52:50 +02:00
import parseArgs from 'minimist'
import Server from '../server'
import { existsSync } from 'fs'
2016-10-06 01:52:50 +02:00
2017-01-16 04:58:45 +01:00
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
2016-10-06 01:52:50 +02:00
const argv = parseArgs(process.argv.slice(2), {
alias: {
h: 'help',
p: 'port'
},
boolean: ['h'],
default: {
p: 3000
}
})
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, -h Displays this message
`)
process.exit(0)
}
2016-10-06 13:05:52 +02:00
const dir = resolve(argv._[0] || '.')
2016-10-06 01:52:50 +02:00
2016-10-06 13:05:52 +02:00
const srv = new Server({ dir })
if (!existsSync(resolve(dir, '.next', 'BUILD_ID'))) {
console.error(`> Could not find a valid build in the '.next' directory! Try building your app with 'next build' before starting the server.`)
process.exit(1)
}
2016-10-06 01:52:50 +02:00
srv.start(argv.port)
.then(() => {
if (!process.env.NOW) {
console.log(`> Ready on http://localhost:${argv.port}`)
}
2016-10-06 01:52:50 +02:00
})
.catch((err) => {
console.error(err)
2016-10-25 17:03:24 +02:00
process.exit(1)
2016-10-06 01:52:50 +02:00
})