GENERAL CONTRIBUTING RULES

  • When you write code, please accompany it with comments. Write as many comments as possible. Remember that someone may need to make changes to your code or use it in other projects of the company and the presence of comments will allow you to understand your code much faster

  • If you find bugs in the code and cannot make changes right now, please create the issues in milestone “Bug Fixing”. This milestone is present in every project.

Code Modification Procedure

  1. Create a new branch from “master”

  2. Make code changes

  3. Send a merge request

  4. After testing on Development server, we create release and install it on production server

Important notes

License comment

Start new file with adding next license comment:

/********************************
* Copyright (C) 2020 IPTP Networks - All Rights Reserved
*
* This file is part of the [Project name] library
*
* Unauthorized copying of this file, via any media is strictly prohibited
* Proprietary and confidential
*
* Written by [name][email (not iptp)], [date when file was created]
*
* [Description of the file]
*********************************/

If you modify file, as well add your name, email and date of edit such as:

* Written by [name][email (not iptp)], [date when file was created]
* Edited by [name][email (not iptp)], [date when file was edited]