Skip to content

Commit

Permalink
📝docs: separate bash commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Marukome0743 committed Feb 6, 2025
1 parent f4a9892 commit 307541c
Showing 1 changed file with 32 additions and 10 deletions.
42 changes: 32 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,52 @@
To clone and run this application, you'll need [Git](https://git-scm.com) and [Bun](https://bun.sh/) installed on your computer.
From your command line:

1. Clone this repository

```bash
# Clone this repository
$ git clone https://github.com/OpenUp-LabTakizawa/caravan-kidstec
```

# Install dependencies with bun
2. Install dependencies with bun

```bash
$ cd caravan-kidstec && bun i
```

3. Develop the app

# Develop the app
```bash
$ bun dev
```

4. Test the app

# Test the app
```bash
$ bun test:app
```

5. E2E Test

# E2E Test
```bash
$ bun test:e2e
```

6. Format and Lint the files

```bash
$ bun lint
```

7. Build the app

# Build the app
```bash
$ bun run build
```

# Start the app
$ bun start
8. Start the app

# Format and Lint the files
$ bun lint
```bash
$ bun start
```

## 🆚 VSCode
Expand Down

0 comments on commit 307541c

Please sign in to comment.