From 4b19076f9b549a00c98eca8e1c35ee0d62e05155 Mon Sep 17 00:00:00 2001 From: Micah Zoltu Date: Sun, 31 Mar 2024 18:13:09 +0800 Subject: [PATCH] chore: fix webapp build instructions (#2856) --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1faecbe23..f0161f853 100644 --- a/README.md +++ b/README.md @@ -49,11 +49,12 @@ Questions? Find answers on our [Help page](https://standardnotes.com/help). Our web app is compiled into a folder of static HTML, JS, and CSS files. You can serve these files behind a web server to get started: -1. Clone the repo -2. `cd packages/web` -3. `yarn build` -4. `cd dist` -5. You can then use Python to serve this folder over http: `python -m http.server 8080` +1. `git clone https://github.com/standardnotes/app.git` +2. `cd app` +3. `yarn install` +4. `yarn build:web` +5. `cd packages/web` +6. You can then use Python to serve this folder over http: `python -m http.server 8080` You can now access the app at `http://localhost:8080`.