- Website: data.theglobalfund.org
- Authors: Zimmerman
- Github Repo:
Information about the data/logic mapping process can be found in src/config/README.md
Whenever dependencies in package.json
are changed, run the following command:
yarn install
yarn dev
Open http://localhost:4200 in your browser. Changes will be reflected once you save them.
yarn deploy
yarn run lint
To automatically fix such issues:
yarn run lint:fix
This project is created with LoopBack v4.
To learn more about LoopBack v4, check out the LoopBack v4 documentation.
- As we use semantic-release for automated git releases your commits must comply with the following commit types:
feat: A new feature
fix: A bug fix
docs: Documentation only changes
style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
refactor: A code change that neither fixes a bug nor adds a feature
perf: A code change that improves performance
test: Adding missing or correcting existing tests
chore: Changes to the build process or auxiliary tools and libraries such as documentation generation
- Always try to reference issues in commit messages or pull requests ("related to #614", "closes #619" and etc.).
- Avoid huge code commits where the difference can not even be rendered by browser based web apps (Github for example). Smaller commits make it much easier to understand why and how the changes were made, why (if) it results in certain bugs and etc.
- If there's a reason to commit code that is commented out (there usually should be none), always leave a "FIXME" or "TODO" comment so it's clear for other developers why this was done.
- Automatic code quality / testing checks (continuous integration tools) are implemented to check all these things automatically when pushing / merging new branches. Quality is the key!