From f79b3a5c9d20b91a5cfaba39b7f0e8ecd998b84e Mon Sep 17 00:00:00 2001 From: Akemmanuel Date: Mon, 15 Dec 2025 11:00:10 -0300 Subject: [PATCH] Update package manager from pnpm to bun --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 76377f83..e6da2142 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ cd Interstellar Once you've cloned the repository, install the required dependencies and start the application: ```bash -pnpm install && pnpm start +bun install && bun start ``` This will install all the necessary dependencies and start the application in production mode. @@ -30,7 +30,7 @@ This will install all the necessary dependencies and start the application in pr If you are developing for Interstellar , use the following commands: ```bash -pnpm install && pnpm dev +bun install && bun dev ``` This will install dependencies and start the development server, which will automatically reload when you make changes to the code.