Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Latest commit

 

History

History
47 lines (32 loc) · 1.53 KB

CONTRIBUTING.md

File metadata and controls

47 lines (32 loc) · 1.53 KB

Contribution Guidelines

Thanks for your help! We welcome all contributors.

Project structure

  • src js source code
  • ios ios source code

Install dependencies

npm install
or
yarn

run

npm run ios

Write Commit Message

Before creating a pull request, please check that your commit complies with the commit conventions used in this repository.

When you create a commit, follow the convention: category(scope or module): message, where category is one of:

  • feat: a new feature
  • fix: fix bugs
  • refactor: refactoring (code changes that neither fix bugs nor add new features)
  • perf: code changes to improve performance
  • docs: change existing docs or create new ones
  • build: changes affecting the build system or external dependencies (example scope: rollup, npm)
  • test: add missing tests or correct existing ones
  • style: changes that do not affect the meaning of the code (whitespace, formatting, missing semicolons, etc.)
  • chore: A change to the repository that does not meet any of the above

If you're interested in a detailed specification, you can visit Conventional Commits or check out the [Angular Commit Message Guidelines](https://github.com/angular/angular/blob/22b96b9/ CONTRIBUTING.md#-commit-message-guidelines).

Command Introduction

See: https://reactnative.dev/docs/environment-setup

  • npm run ios one way to run your app. You can also run it directly from within Xcode.
  • npm run start starts Metro Bundler.