This is the repository hosting the colibri-hr React application
This project has been initiated with create-react-app. You can find the original generated docs here.
- Clone the repo on local machine:
$ git clone git@github.com:RazvanCosmeanu/colibri-hr.git
and$ cd colibri-hr
. - Install nvm. This project has a
.nvmrc
file that ensures the usage of the same version of NodeJS.$ nvm install && nvm use
- Install the necessary project dependencies
$ npm install
.
- Dev server:
$ npm start
will start the dev server at http://localhost:3001. Addition available commands listed by typing$ npm run
. - Run tests:
$ npm test
.
$ npm build
will create an optimized build, ready for production. More details here.