The Jared Project: Jared is an ERP system for handling employees, customers other ERP features related with software companies.
Jared Back-End installation steps
-
Clone the Jared Back-End git repository (fork the repository first if you want to contribute)
-
Build and run the docker containers:
docker-compose up -d
-
Once the containers are running:
docker-compose exec server sh -c "cd src/migration; node migrate.js"
- Update to the latest version of master -
$ git checkout master && git pull
- Create a new branch for working on the issue
2.1
$ git checkout -b features/<#issue_number>-<name>
(If it's a new feature) 2.2$ git checkout -b bug_fixing/<#issue_number>-<name>
(If it's a bug) - Commit locally as you need -
$ git commit -m 'bla bla'
- Update your branch against master -
$ git fetch origin && git rebase origin master
- Push your branch to github -
$ git push origin <branch-name>
- Create a Pull request and assign a reviewer