Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/yarn install engine node is incompatible #150

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 37 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,48 @@ You can spin up a preconfigured instance with the following command.
cd oidc_mock && docker-compose up -d
```
Then to run the application with correct settings run:
```
vite dev
```

## Production build
## Recommended package manager is Yarn

# Because of some Legacy package (or the packages that has not updated for a few years) that specify a peer dependency which is in conflict with a package you want to install

## Project Setup

```sh
# yarn
yarn install

# npm
npm install
```
vite build

### Compile and Hot-Reload for Development

```sh
# yarn
yarn dev

# npm
npm run dev
```

### Lints and fixes files
### Compile and Minify for Production

```sh
# yarn
yarn build

# npm
npm run build
```

### Lint with [ESLint](https://eslint.org/)

```sh
# yarn
yarn lint

# npm
npm run lint
```

Expand Down
Loading
Loading