Skip to content

Commit

Permalink
πŸ“ Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
jyboy committed Apr 19, 2024
1 parent d5e25bd commit 093dcf3
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ Check out the live demo: [littlelemon-rest.netlify.app](https://littlelemon-rest
- βœ… Semantic HTML and responsive design
- βœ… Working routers and successful self-testing

## Installation
## Getting Started

### Prerequisites

Ensure you have `Node.js` and `pnpm` installed on your machine.

### Installation

1. Clone the repository:

Expand All @@ -37,23 +43,29 @@ cd little-lemon-restaurant
3. Install dependencies:

```sh
npm install # or pnpm install (recommended)
pnpm install
```

4. Start the development server:

```sh
npm start # or npm run dev
pnpm run dev
```

## Additional Scripts
### Additional Scripts

- Lint JavaScript files:

```sh
npm run lint
```

- Format the code:

```sh
npm run format
```

- Run unit tests:

```sh
Expand Down

0 comments on commit 093dcf3

Please sign in to comment.