re-add node start command

This commit is contained in:
Tealk 2022-03-18 12:16:21 +01:00
parent 99236c65fa
commit 325a4dd056
No known key found for this signature in database
GPG Key ID: 5FE349ABC863E7F9
1 changed files with 5 additions and 0 deletions

View File

@ -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"
```