ecency-mobile/README.md

99 lines
4.1 KiB
Markdown
Raw Normal View History

2018-09-25 18:39:14 +03:00
### eSteem Mobile
2018-12-16 20:35:39 +03:00
iOS ![iOS](https://build.appcenter.ms/v0.1/apps/ef80aa2a-d4e1-4f43-a4f8-be12ea72ba9b/branches/master/badge)
2018-12-16 20:35:56 +03:00
Android ![Android](https://build.appcenter.ms/v0.1/apps/12aace32-b58a-49da-bf85-5477f89ae16e/branches/master/badge)
2018-12-10 12:58:36 +03:00
2018-09-26 00:16:20 +03:00
### I. How do I get set up?
2018-09-25 18:39:14 +03:00
`$ git clone https://github.com/esteemapp/esteem-mobile.git`
`$ cd esteem-mobile`
2018-09-26 00:16:20 +03:00
`$ npm install` (You should use `npm` if you use yarn its getting error its about realm \*\*TODO)
2018-09-25 18:39:14 +03:00
`$ npm install -g react-native-cli` (if you already have `react-native` as globally it not require)
`$ react-native start` (Now your local server should start)
## Starting for IOS
2018-09-26 00:16:20 +03:00
2018-09-25 18:39:14 +03:00
### `react-native run-ios` (this also run `react-native start` if you didn't)
## Starting for Android
2018-09-26 00:16:20 +03:00
2018-09-25 18:39:14 +03:00
TODO
##### Using Android Studio's `adb`
1. Make sure that you can run adb from your terminal.
2. Open Genymotion and navigate to `Settings -> ADB`. Select “Use custom Android SDK tools” and update with your [Android SDK directory](https://stackoverflow.com/questions/25176594/android-sdk-location).
##### Using Genymotion's `adb`
1. Find Genymotions copy of adb. On macOS for example, this is normally `/Applications/Genymotion.app/Contents/MacOS/tools/`.
2. Add the Genymotion tools directory to your path (instructions for [Mac](http://osxdaily.com/2014/08/14/add-new-path-to-path-command-line/), [Linux](http://www.computerhope.com/issues/ch001647.htm), and [Windows](https://www.howtogeek.com/118594/how-to-edit-your-system-path-for-easy-command-line-access/)).
3. Make sure that you can run adb from your terminal.
2018-09-26 00:16:20 +03:00
# The Rules
### Patches and Review Process
#### Before you start
2018-09-25 18:39:14 +03:00
2019-01-03 16:38:51 +03:00
1. When you address an issue or a feature, make sure that there doesn't already exist a ISSUES ticket for this work item.
2018-09-25 18:39:14 +03:00
- [Issues](https://github.com/esteemapp/esteem-mobile/issues)
2018-09-26 00:16:20 +03:00
2. If the item already exists and is in progress, please remove the card or the issue you were assigned and leave a note that it is a duplicate.
3.If the item is not being worked on, please make sure that you put the card or issue as "In Progress" and assign it to yourself so other developers know that you are working on it.
#### Patch a day
2018-09-25 18:39:14 +03:00
It is important to make the work you are doing visible to other team members, especially because there are developers in different location.
Even if you are not done the work on your patch, make sure to put a Pull Request up and leave a note that this is work in progress (WIP) so that others do not try to merge in your patch.
If you would like to have someone in particular review your work, leave your patch as WIP and assign the developers that need to review or update your patch before it is ready to be reviewed by other team members.
2018-09-26 00:16:20 +03:00
#### Who to assign your patch for review
- [@feruzm](https://github.com/feruzm)
- [@talhasch](https://github.com/talhasch)
- [@mistikk](https://github.com/mistikk)
- [@ue](https://github.com/ue)
2018-09-26 00:16:20 +03:00
### Patch Review Template
2018-09-25 18:39:14 +03:00
When you create a pull request for your patch, make sure to leave all the information that other team members will need to understand the purpose of your patch as well.
2018-09-26 00:16:20 +03:00
Main Branch `master`
2018-09-25 18:39:14 +03:00
If you resolved a issue or something You have to whern you commit your pr commit message include issue number for ex. resolved #10 or closed #10 etc.
2018-09-26 00:16:20 +03:00
#### Before you start
2018-09-25 18:39:14 +03:00
1. Pull every changes.
2. Switch your branch with development
3. Create about issues or bugfix branch.
4. Make sure your repo up to date!
2018-09-26 00:16:20 +03:00
#### Creating branch
2018-09-25 18:39:14 +03:00
- For example if you want create branch for an issue should contain issue number (ex. #55)
- Whats your interest put bugfix/your*branch_name or feature/your_branch_name*#issue_number
- If you some changes for only config req config/your_branch_name
2018-09-25 18:39:14 +03:00
2018-09-26 00:16:20 +03:00
#### Commit messages
2018-09-25 18:39:14 +03:00
2018-09-26 00:16:20 +03:00
What ever you want number of commit. Before create push squash your all commit. We need just what you do!
2018-09-25 18:39:14 +03:00
2018-09-26 00:16:20 +03:00
#### Pushing
2018-09-25 18:39:14 +03:00
- Make sure push your main branch (master)
2019-01-03 16:38:51 +03:00
# Issues
To report a non-critical issue, please file an issue on this GitHub project.
If you find a security issue please report details to: security@esteem.app
We will evaluate the risk and make a patch available before filing the issue.