Development Process
After Setting up the workspace and Front-End setup and compilation we should be able to add, modify or delete code.
Documentation
It is important to document and comment our code for the future understanding.
Formal documentation is made by DocFx which is a API documentation generator that builds a static HTML website from our Markdown files
There is a docs folder that contains a documentation structure , after adding a new Mark Down file we have to make sure that is referenced on toc.yml
file.
Like this:
Also is important to add comments to the code and make sure that is aligned.
Testing
We manage high percentage of coverage on our code, it is important to make sure that everything have been tested, here is a guide about how it works Unit Test Manual
Pull Request
When our code is ready is time to make a pull request, this needs to be be approved by two developers in order to be merged on our develop branch.
Last updated