From 2a826f79410b902627754cd0e0fd940c859da23d Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Sun, 12 Feb 2023 19:04:12 +0100 Subject: [PATCH] docs: stand-alone installation start backend first --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7e1ce987..398b925b 100644 --- a/README.md +++ b/README.md @@ -44,17 +44,17 @@ cd pingvin-share # Checkout the latest version git fetch --tags && git checkout $(git describe --tags `git rev-list --tags --max-count=1`) -# Start the frontend -cd frontend -npm install -npm run build -pm2 start npm --name="pingvin-share-frontend" -- run start - # Start the backend cd ../backend npm install npm run build pm2 start --name="pingvin-share-backend" npm -- run prod + +# Start the frontend +cd frontend +npm install +npm run build +pm2 start --name="pingvin-share-frontend" npm -- run start ``` The website is now listening available on `http://localhost:3000`, have fun with Pingvin Share 🐧!