Nuxt/examples/pm2-typescript
Kevin Marrec 9a3fc8a44e refactor(ts): only generate tsconfig.json if missing (#5356) (#5367)
Co-authored-by: SAWADA Takayoshi <sawadasuiren@gmail.com>
2019-03-29 18:30:49 +04:30
..
pages chore(examples): zero-downtime pm2 typescript example (#4907) 2019-02-01 16:37:55 +03:30
README.md doc: create/update README.mds for examples (#4980) 2019-02-08 15:48:30 +01:00
ecosystem.config.js refactor(ts): better DX for typescript support (#5079) 2019-03-14 13:37:47 +03:30
nuxt.config.ts examples: upgrade and fix typescript configuration files (#5310) 2019-03-21 23:21:56 +03:30
package.json refactor(ts): better DX for typescript support (#5079) 2019-03-14 13:37:47 +03:30
tsconfig.json refactor(ts): only generate tsconfig.json if missing (#5356) (#5367) 2019-03-29 18:30:49 +04:30

README.md

Nuxt.ts with PM2 example

pm2 ia an advanced process manager for production Node.js applications. Load balancer, logs facility, startup script, micro service management and more.

Gracefull zero-downtime restart

ecosystem.config.js - configuration file for pm2

listen_timeout option depends on your need

Zero-downtime deployment

*all depends on your deployment method. It's just example

Directories:

  • $PROJECT_ROOT - your project root path on server
  • /current - root dir for nginx(if you are using proxy configuration)
  • /_tmp - Temporary dir to install and build project
  • /_old - Previous build. Can be useful for fast reverting

Steps:

  • deploy project to $PROJECT_ROOT/_tmp
  • cd $PROJECT_ROOT/_tmp
  • npm i
  • nuxt build or if you are using TypeScript nuxt-ts build
  • mv $PROJECT_ROOT/current $PROJECT_ROOT/_old
  • mv $PROJECT_ROOT/_tmp $PROJECT_ROOT/current
  • cd $PROJECT_PATH/current
  • pm2 startOrReload ecosystem.config.js