Skip to content

Commit 89dfc11

Browse files
committed
fix: Remove unnecessary hyphens from command examples in README.md
1 parent 4d63bc8 commit 89dfc11

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,35 +21,35 @@ Copy the `.env.example` file to `.env` for production or `.env.development` for
2121
`production`:
2222

2323
```bash
24-
$ cp .env.example .env
24+
cp .env.example .env
2525
```
2626

2727
`development`:
2828

2929
```bash
30-
$ cp .env.example .env.development
30+
cp .env.example .env.development
3131
```
3232

3333
#### 2. Install the dependencies:
3434

3535
```bash
36-
$ bun install
36+
bun install
3737
```
3838

3939
#### 3. Run the project in development mode:
4040

4141
```bash
42-
$ bun run dev
42+
bun run dev
4343
```
4444

4545
#### 4. Build the project:
4646

4747
```bash
48-
$ bun build
48+
bun build
4949
```
5050

5151
#### 5. Run the project in production mode:
5252

5353
```bash
54-
$ bun start
54+
bun start
5555
```

0 commit comments

Comments
 (0)