Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.13 KB

File metadata and controls

33 lines (23 loc) · 1.13 KB

EasyCourse-Web

EasyCourse web client

Install and Running

git clone https://github.com/easycourse-dev/EasyCourse-Web.git

  1. cd EasyCourse-Web
  2. npm install
  3. npm start
  4. Navigate to http://localhost:2333 in your browser.

Features

Coding Standards

  1. Naming Standards

    Be as detailed as possible, always include type and purpose, for example: for the password textbox user input, name the input as passwordInput

  2. Comments

    Have at least one line of comment to describe each function, comments to describe each step within functions would be recommended

Git Development

  • "develop" branch is protected, only administrators are authorized to write
  • When developing new features, create new "feature/FeatureName" branch from "develop"
  • Always pull the latest "develop" branch and merge into your own feature branch before you start your work and when you find out new commits appear in "develop" branch