diff --git a/README.md b/README.md index 69928c2..b0ae8a3 100644 --- a/README.md +++ b/README.md @@ -193,4 +193,18 @@ The following variables may be set to customize your deployment at runtime. npm start ``` -Teddit should now be running at . +Teddit should now be running at . + +You can also run teddit from a process manager like [pm2](https://www.npmjs.com/package/pm2): + +``` +## To run: +npm install pm2 -g +pm2 start app.js + +## To run on startup: +pm2 startup +pm2 save +``` + +See also the [pm2 instructions for running a project on startup](https://pm2.keymetrics.io/docs/usage/startup/), and in particular the section on waiting for your machine to connect to its network.