Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (20 loc) · 639 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (20 loc) · 639 Bytes

Contribution

...

Development

You need to have node and yarn installed to run this project locally.

# git clone project locally

# install required packages (node modules)
yarn

# start project with hot reload
yarn start

# build code
yarn build

# start application with node js debugger enabled
# after that you can for example connect into it with your Editor (phpstorm/webstorm> Attach to Node.js/Chrome)
yarn start-debugger

# run linter (tslint + prettier)
yarn lint

# run prettier (it will be also done automatically in git hook before commit)
yarn prettier