Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 655df19

Browse files
committed
Merge branch 'y00rb-patch-1'
2 parents 3d2f174 + acffe2f commit 655df19

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# NOTES:
1+
22

33
Snowflake ![snowflake](https://cloud.githubusercontent.com/assets/1282364/11599365/1a1c39d2-9a8c-11e5-8819-bc1e48b30525.png)
44
==================================
@@ -177,15 +177,15 @@ npm install
177177
hapiRemote: true
178178
},
179179
```
180-
* To run Hapi either locally on remotely on OpenShift, update the below ```src/lib/config.js``` file:
180+
* To run Hapi either locally on remotely on OpenShift, update the ```src/lib/config.js``` file as shown below:
181181

182182
```
183183
HAPI: {
184184
local: {
185185
url: 'http://127.0.0.1:5000'
186186
},
187187
remote: {
188-
url: 'https://mysnowflake-bartonhammond.rhcloud.com'
188+
url: 'put your remote url here'
189189
}
190190
}
191191
@@ -200,8 +200,8 @@ npm install
200200
* Verify user emails -> Yes
201201

202202
### To run:
203-
* On mac, open XCode and load project
204-
* For android, ```react-native run-android``` assuming you have an emulator or device attached.
203+
* For iOS, from the command line, run via command: ```react-native run-ios``` or open XCode and load project, Run ```Product -> Run (⌘+R)```
204+
* For android, from the command line, run via the command: ```react-native run-android``` assuming you have an emulator or device running and attached
205205
* To run Jest, ```npm test```
206206
* To debug Jest unit cases, install [node_inspector](https://github.com/node-inspector/node-inspector) and run ```npm run test-chrome```
207207
* Enjoy!

src/lib/config.example.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ module.exports = {
66
},
77
backend: {
88
parse: false,
9-
hapiRemote: true,
10-
hapiLocal: false
11-
}
9+
hapiRemote: false,
10+
hapiLocal: true
11+
},
12+
HAPI: {
13+
local: {
14+
url: 'http://127.0.0.1:5000'
15+
},
16+
remote: {
17+
url: 'enter your remote url here'
18+
}
19+
}
1220
}

0 commit comments

Comments
 (0)