From e097c27286b5bb6c59f2b48cce965f0e780aeb6a Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 21 Nov 2025 11:07:23 +0100 Subject: [PATCH] chore: update deployment instructions --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 8210f85..80649e2 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,13 @@ $ pnpm i For the script `npm run deploy`, you need to add an environmental variable named HOST containing the IP address of the host server. This will scp the build files into the server. +You can do this by adding a `.env` file with the following content (replace the IP): + +```bash +# .env +HOST=123.456.789.00 +``` + If you want to run build before deploying, do `npm run build:deploy` ---