Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.02 KB

CONTRIBUTING.md

File metadata and controls

45 lines (32 loc) · 1.02 KB

CONTRIBUTING

Development

Start to development

yarn # install dependencies

yarn dev

Running a web preview version:

yarn build
yarn web

Naming

Unify the Service methods basic prefix naming:

  • add, prefix for Add sth.
  • remove, prefix for Remove sth.
  • update, prefix for Update sth.
  • get, prefix for Get sth.
  • set, prefix for Set sth.
  • create, perfix for create sth.
  • on, prefix for listen to the event.
  • find, prefix for Find sth.
  • move, prefix for Move sth.
  • append, prefix for Append sth.
  • toggle, prefix for Toggle sth.

Git Work flow

Branch-based Workflow

Reference