| Name | Food |
|---|---|
| Masoud | Banana Bread |
| Maher | Coffee & Tea 😂 |
| Rahma | Oats cookies with chocolate chips |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* for windows */ | |
| /* to start mongo demon */ | |
| 1-Open CMD as admin | |
| 2-Go to mongoDB folder | |
| 3-navigate to the bin/ folder | |
| 4-run mongo.exe (mongod) | |
| /* to access mongo database */ | |
| 1-Go to bin/ file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1- Have two main branches | |
| 1.1- Master (where production code lives) | |
| 1.2- Develop (where development code lives) | |
| 2- New features are added by creating a feature branch to the Develop branch | |
| 3- Create a release branch after featues are added to the develop branch and write tests there | |
| 4- merge the release branch with the master branch + develop branch | |
| 5- when merging to master add a version tag | |
| 6- for Hot fixes create a hot fix branch and merge to master |
