fix: npm run start (#1380)

This commit is contained in:
zxhlyh
2023-10-19 11:38:03 +08:00
committed by GitHub
parent 6309d070d1
commit 6e05f8ca93
2 changed files with 8 additions and 11 deletions

View File

@@ -64,24 +64,20 @@ Open [http://localhost:3000](http://localhost:3000) with your browser to see the
## Deploy
### Deploy on server
First, build the app for production:
```bash
npm run build
```
Then, move the static files to standalone folder:
Then, start the server:
```bash
mv .next/static .next/standalone/.next
cp -r ./public .next/standalone/.next/
npm run start
```
Finally, start the app:
If you want to customize the host and port:
```bash
node .next/standalone/server.js
npm run start --port=3001 --host=0.0.0.0
```
If your project needs alternative port or hostname for listening, you can define PORT and HOSTNAME environment variables, before running server.js. For example, `PORT=3000 HOSTNAME=localhost node .next/standalone/server.js`.
## Lint Code
If your IDE is VSCode, rename `web/.vscode/settings.example.json` to `web/.vscode/settings.json` for lint code setting.