Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 647 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (23 loc) · 647 Bytes

Development

To explore the source code, start with src/App.tsx.

How to run

After having cloned the Rentgen repository, run the following commands at the root directory:

npm ci
npm run dev

These commands will install dependencies and launch the dev server, by going to localhost:3000 you can go to the Rentgen UI interface.

How to format code

Run the following command at the root directory:

npm run prettier-format

How to run linters

Run the following command at the root directory:

npm run lint

How to install pre-commit hooks

npm run pre-commit-install