Skip to content

Commit

Permalink
docs: node install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
helio-frota committed Mar 6, 2024
1 parent e262bb6 commit 6077b46
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions frontend/README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,33 @@
# frontend

## dev-env

Install dependencies:
### Install node and npm

Use [nvm](https://github.com/nvm-sh/nvm?tab=readme-ov-file#install--update-script)
that installs both node and npm.

Then

```shell
nvm install node
node --version
npm --version
```

### Install dependencies:

```shell
npm clean-install --ignore-scripts
```

Init the dev server:
### Init the dev server:

```shell
npm run start:dev
```

Open brower at http://localhost:3000
Open browser at <http://localhost:3000>

## Environment variables

Expand Down

0 comments on commit 6077b46

Please sign in to comment.