mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9347c8bdd0
* Update references to `.next` * Remove console logs and extraneous semi colons * Remove lint errors * Update references to .next and update docs * Update options from nested to flat with `distDir` * Add integration tests, and update `.gitignore` * Rename integration folder to dist-dir to match standards
69 lines
1.8 KiB
JavaScript
Executable file
69 lines
1.8 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
import { resolve } from 'path'
|
|
import parseArgs from 'minimist'
|
|
import Server from '../server'
|
|
import { existsSync } from 'fs'
|
|
import getConfig from '../server/config'
|
|
|
|
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
|
|
|
|
const argv = parseArgs(process.argv.slice(2), {
|
|
alias: {
|
|
h: 'help',
|
|
H: 'hostname',
|
|
p: 'port'
|
|
},
|
|
boolean: ['h'],
|
|
string: ['H'],
|
|
default: { p: 3000 }
|
|
})
|
|
|
|
if (argv.hostname === '') {
|
|
console.error(`> Provided hostname argument has no value`)
|
|
process.exit(1)
|
|
}
|
|
|
|
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 dist folder
|
|
created by running \`next build\`.
|
|
If no directory is provided, the current directory will be assumed.
|
|
You can set a custom dist folder in config https://github.com/zeit/next.js#custom-configuration
|
|
|
|
Options
|
|
--port, -p A port number on which to start the application
|
|
--hostname, -H Hostname on which to start the application
|
|
--help, -h Displays this message
|
|
`)
|
|
process.exit(0)
|
|
}
|
|
|
|
const dir = resolve(argv._[0] || '.')
|
|
const dist = getConfig(dir).distDir
|
|
|
|
const srv = new Server({ dir })
|
|
|
|
if (!existsSync(resolve(dir, dist, 'BUILD_ID'))) {
|
|
console.error(`> Could not find a valid build in the '${dist}' directory! Try building your app with 'next build' before starting the server.`)
|
|
process.exit(1)
|
|
}
|
|
|
|
srv.start(argv.port, argv.hostname)
|
|
.then(() => {
|
|
if (!process.env.NOW) {
|
|
console.log(`> Ready on http://${argv.hostname ? argv.hostname : 'localhost'}:${argv.port}`)
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|