Clarify local dev steps

This commit is contained in:
Yarmo Mackenbach 2021-01-15 14:53:49 +01:00
parent 255b3dc528
commit 5ef292a482
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1

View file

@ -38,9 +38,12 @@ Please note that this project has a [Code of Conduct](https://codeberg.org/keyox
To run Keyoxide locally on your machine for development: To run Keyoxide locally on your machine for development:
- install NodeJS - install either
- directly from their [website](https://nodejs.org/en/), or - NodeJS
- using [nvm](https://github.com/nvm-sh/nvm): `nvm install --lts; nvm use --lts` - directly from their [website](https://nodejs.org/en/), or
- run the server with `npm run dev` - using [nvm](https://github.com/nvm-sh/nvm): `nvm install --lts; nvm use --lts`
- [yarn](https://yarnpkg.com/)
- install dependencies with `npm install` or `yarn`
- run the server with `npm dev` or `yarn dev`
Keyoxide will now be available at [https://localhost:3000](https://localhost:3000) Keyoxide will now be available at [https://localhost:3000](https://localhost:3000)