From 2880d9bf8c22549dfa140df7c4523cdb5c519d82 Mon Sep 17 00:00:00 2001 From: nullptr <62841684+not-nullptr@users.noreply.github.com> Date: Thu, 14 Nov 2024 08:46:53 +0000 Subject: [PATCH] Update README.md --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 024fc00..e80ba3c 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,7 @@ VERT is built in Svelte and TypeScript. Make sure you have the following installed: -- [Node.js](https://nodejs.org/) (version 14 or higher) -- [pnpm](https://pnpm.io/) (version 6 or higher) +- [Bun](https://bun.sh/) ### Installation ```sh @@ -26,12 +25,12 @@ Make sure you have the following installed: git clone https://github.com/yourusername/vert.git cd vert # Install dependencies -pnpm install +bun i ``` ### Running Locally -To run the project locally, run `pnpm run dev`. +To run the project locally, run `bun dev`. This will start a development server. Open your browser and navigate to `http://localhost:5173` to see the application. @@ -44,7 +43,7 @@ PUB_HOSTNAME=vert.sh # change to your domain PUB_PLAUSIBLE_URL=https://plausible.example.com # can be empty if not using Plausible ``` -To build the project for production, run `pnpm run build` +To build the project for production, run `bun run build` This will build the site to the `build` folder. You can then start the server with `bun ./build/index.js` and navigate to `http://localhost:3000` to see the application.