Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

55 lines (39 loc) · 1.14 KB

Contributing

We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project.

Development workflow

  1. Navigate to one of the app directories (ie. starter-app-ecommerce)

⚠️ If you are using final-app-ecommerce be sure to add your write-key in App.tsx

const segmentClient = createClient({
  writeKey: 'WRITE_KEY',
  trackAppLifecycleEvents: true,
  collectDeviceId: true,
});
  1. Install dependencies
yarn
  1. Install pods
cd ios && pod install
cd .. 
  1. Build and run

iOS

yarn ios

Android

yarn android

Sending a pull request

Working on your first pull request? You can learn how from this free series: How to Contribute to an Open Source Project on GitHub.

When you're sending a pull request:

  • Prefer small pull requests focused on one change.
  • Verify that linters and tests are passing.
  • Review the documentation to make sure it looks good.
  • Follow the pull request template when opening a pull request.