Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.23 KB

README.md

File metadata and controls

59 lines (41 loc) · 1.23 KB

Tonbly

Development

Prerequisites

Setup

$ git clone https://github.com/devilune/tonbly.git
$ cd tonbly
$ yarn
$ cd db
$ yarn up

Run

# at root directory
$ yarn dev

Projects

db

references

Contributing

Commit Message Guidelines

Commit Message Format

<type>: <subject>

Type

Must be one of the following:

  • build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
  • ci: Changes to our CI configuration files and scripts (example scopes: Circle, BrowserStack, SauceLabs)
  • docs: Documentation only changes
  • feat: A new feature
  • fix: A bug fix
  • perf: A code change that improves performance
  • refactor: A code change that neither fixes a bug nor adds a feature
  • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
  • test: Adding missing tests or correcting existing tests