docs: update documentation to use Bun commands and scripts

- Replace npm commands with equivalent Bun commands in GETTING_STARTED.md
- Update TESTING.md to reflect Bun-specific test and development scripts
- Simplify installation, development, and testing instructions
This commit is contained in:
jango-blockchained
2025-02-04 04:17:58 +01:00
parent cb897d4cf6
commit 3e97357561
2 changed files with 10 additions and 10 deletions

View File

@@ -20,7 +20,7 @@ Before you begin, ensure you have:
2. Install dependencies:
```bash
npm install
bun install
```
3. Copy the example environment file:
@@ -57,7 +57,7 @@ Before you begin, ensure you have:
For development, you can use:
```bash
npm run dev
bun run dev
```
This will start the server in development mode with hot reloading.
@@ -67,8 +67,8 @@ This will start the server in development mode with hot reloading.
For production, build and start the server:
```bash
npm run build
npm start
bun run build
bun start
```
## First Steps