From c40a4f69cb03db5bab8b060fc31479eae425c8ff Mon Sep 17 00:00:00 2001 From: yougotwill Date: Wed, 5 Feb 2025 17:37:00 +1100 Subject: [PATCH] fix: use MULTI instead of NODE_APP_INSTANCE --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 39a9a7b9c..4b6dd765f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -245,10 +245,10 @@ yarn start-prod # Start production but in development mode MULTI=1 yarn start-prod # Start another instance of production ``` -For more than 2 clients, you may run the above command with `NODE_APP_INSTANCE` set before them. For example, running: +For more than 2 clients, you may run the above command with `MULTI` set before them. For example, running: ```shell -NODE_APP_INSTANCE=alice yarn start-prod +MULTI=alice yarn start-prod ``` Will run the development environment with the `alice` instance and thus create a separate storage profile.