Skip to content

Commit d6dc2e6

Browse files
committed
Updated contributing guide
1 parent beb99cb commit d6dc2e6

File tree

2 files changed

+31
-6
lines changed

2 files changed

+31
-6
lines changed

Contributing.md

+29
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

33
This is an in-progress guide to help guide you in understanding how Firestack works with the goal to help on-board your contributions. If you have any questions, comments, or concerns, feel free to leave it here or join the [gitter channel at https://gitter.im/fullstackreact/react-native-firestack](https://gitter.im/fullstackreact/react-native-firestack).
44

5+
## Contribution methods
6+
7+
Contributing is easy. Make a fork of the project on [github](https://github.com/fullstackreact/react-native-firestack). Clone this repo on your machine and work on the edits there.
8+
9+
```shell
10+
git clone https://github.com/[your_name]/react-native-firestack.git
11+
cd react-native-firestack
12+
npm install
13+
```
14+
15+
We have an [Example app - FirestackApp](https://github.com/fullstackreact/FirestackApp) which we use to demonstrate and test features (until we can get a proper testing environment). Currently, our workflow looks like this:
16+
17+
1. Write JS/native feature
18+
2. `rsync` the local library to your `node_modules` directory (react-native does not play well with symlinks).
19+
For instance, running the following in the firestackApp root directory. Make sure you replace the `~/Development/react-native/mine/react-native-firestack` with the path of your cloned repo on your drive:
20+
21+
```javascript
22+
rsync -avhW --delete \
23+
--exclude='node_modules' \
24+
--exclude='.git' \
25+
--exclude='coverage' \
26+
~/Development/react-native/mine/react-native-firestack/ \
27+
./node_modules/react-native-firestack/
28+
```
29+
30+
3. Test in-app
31+
4. Update README.md with bugfix/feature
32+
5. Create a pull request (PR)
33+
534
## High level
635

736
## How it works technically

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Firestack makes using the latest [Firebase](http://firebase.com) straight-forwar
88

99
Firestack is a _light-weight_ layer sitting atop the native Firebase libraries for iOS and Android and mirrors the React Native JS api as closely as possible.
1010

11-
For a detailed discussion of how Firestack works, check out our [contribution guide](https://github.com/fullstackreact/react-native-firestack/blob/master/Contributing.md).
11+
For a detailed discussion of how Firestack works as well as how to contribute, check out our [contribution guide](https://github.com/fullstackreact/react-native-firestack/blob/master/Contributing.md).
1212

1313
## Features
1414

@@ -849,11 +849,7 @@ rsync -avhW --delete \
849849

850850
This is _open-source_ software and we can make it rock for everyone through contributions.
851851

852-
```shell
853-
git clone https://github.com/fullstackreact/react-native-firestack.git
854-
cd react-native-firestack
855-
npm install
856-
```
852+
How do you contribute? Check out our contribution guide at [CONTRIBUTING.md](https://github.com/fullstackreact/react-native-firestack/blob/master/Contributing.md)
857853

858854
## TODO
859855

0 commit comments

Comments
 (0)