From 325a4dd05664f88656058c4d642907a3ed76b638 Mon Sep 17 00:00:00 2001 From: Tealk Date: Fri, 18 Mar 2022 12:16:21 +0100 Subject: [PATCH] re-add node start command --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 610d051..6ab1014 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,11 @@ Self-hosting toot outside of Vercel requires some extra setup: 3. Run the backend server for the form: + ```sh + node api/toot.js + ``` + or if you want to run the process in the background: + ```sh pm2 start api/toot.js --watch --ignore-watch="node_modules" ```