소스 검색

Create pm2.md

Kana 6 년 전
부모
커밋
e8f70f5170
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      docs/pm2.md

+ 11 - 0
docs/pm2.md

@@ -0,0 +1,11 @@
+## Setting up PM2 to run lolisafe
+
+The best way to keep the service running in case of crashes or unexpected issues is to attach the process to PM2 and forget about it. This also gives you the ability to dettach the process from your terminal and run it in the background, which is a must since lolisafe now comes in 2 separate processes.
+The recommended way to set it up is to run the commands below, one for the API and the other for the site.
+
+```
+pm2 start npm --name "lolisafe.api" -- run api
+pm2 start npm --name "lolisafe.site" -- run site
+```
+
+All set, if you want to check the logs you can `pm2 logs lolisafe.api` or similar.