Advertisement
Guest User

Untitled

a guest
Jun 1st, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 1.25 KB | None | 0 0
  1. ## Installation Guideline
  2.  
  3. Please follow the following steps:
  4.  
  5. - Clone the repo.
  6. - Run `git checkout development`.
  7. - Run: `composer install`.
  8. - Run: `php artisan migrate --seed`.
  9.  
  10. ## Development Guideline
  11.  
  12. - Never push your code to `master` branch.
  13. - Always use the `development` branch as your base branch.
  14. - Create a new branch from `development` branch before starting to work (e.g. `sumon-dev`).
  15. - Work on the newly created branch (e.g. `sumon-dev`).
  16. - Track your work and commit your code frequently.
  17. - Push your code everyday.
  18.  
  19. ## Coding Guideline
  20.  
  21. - Make sure your code is well-documented.
  22. - Make sure you are following PSR standards.
  23. - Make sure your code is well organized, well indented & spelling mistakes free.
  24. - You can use the following `settings`[1] with `PhpStorm` for auto indentation & code reformation.
  25. - Make sure you are documenting proper data types and lengths when writing `migrations`.
  26.  
  27. ## Project Specific Guideline
  28.  
  29. - Write Frontend (Main Web System) related codes on `Frontend` and `frontend` folders.
  30. - Write Backend (Main Administration Panel) related codes on `Backend` and `backend` folders.
  31. - Write your `models` on `App/Models` folder.
  32.  
  33. ## Issues & Queries
  34. - For issues & queries, use the related Trello board.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement