@@ -195,7 +195,7 @@ build properties described below:
195195| reactHotLoader | Utilize React Hot Loader v3 |
196196| persistGraphQL | Generate and use persistent GraphQL queries |
197197
198- There are also application config options available in ` app.json ` to aid with debugging GraphQL and SQL:
198+ There are also application config options available in ` config/ app.js ` to aid with debugging GraphQL and SQL:
199199
200200| Option | Description |
201201| ------------- | -------------------------------------- |
@@ -294,7 +294,7 @@ Check [subscription module documentation](src/client/modules/subscription/README
294294 On the initial web page request back end fully renders UI and hands off Apollo Redux Store state to front end.
295295 Frontend then starts off from there and updates itself on user interactions.
296296
297- If you don't need Server Side Rendering, set ` app .json` ` ssr ` field to ` false `
297+ If you don't need Server Side Rendering, set ` .spinrc .json` ` ssr ` field to ` false `
298298
299299* Optimistic UI updates
300300
@@ -306,7 +306,7 @@ Check [subscription module documentation](src/client/modules/subscription/README
306306 [ Knex] code to access SQLite is included as an example of using arbitrary data source with [ Apollo] and [ GraphQL] .
307307 NoSQL storage or any other data source can be used the same way.
308308
309- [ Debug SQL] Prints out execuded queries, with respective times in development mode and can be set in ` app.json ` by
309+ [ Debug SQL] Prints out execuded queries, with respective times in development mode and can be set in ` config/ app.js ` by
310310 ` debugSQL ` field ` true `
311311
312312* Powerful stylesheets with Hot Reloading
@@ -329,7 +329,7 @@ Check [subscription module documentation](src/client/modules/subscription/README
329329* [ React Hot Loader v3] for the sake of completeness this project also supports ` React Hot Loader v3 ` , but it is turned
330330 off. By default this starter kit uses pure ` Webpack HMR ` for all hot reloading purposes and we think it covers all
331331 practical needs during development and using ` React Hot Loader v3 ` in addition to ` Webpack HMR ` makes hot reloading
332- less predictable and buggy. To turn ` React Hot Loader v3 ` on: set ` reactHotLoader ` field of ` app .json` to ` true ` .
332+ less predictable and buggy. To turn ` React Hot Loader v3 ` on: set ` reactHotLoader ` field of ` .spinrc .json` to ` true ` .
333333
334334* [ PersistGraphQL Webpack Plugin] is a tool to gather static GraphQL queries for GraphQL projects and inject them into
335335 build. It will make front end and back end aware of static queries used in the project and will only allow these
@@ -428,14 +428,14 @@ yarn start
428428
429429### Publishing mobile apps
430430
431- 1 . Compile project for production with ` ios ` and ` android ` set to ` true ` in ` app .json` via ` yarn build ` .
431+ 1 . Compile project for production with ` ios ` and ` android ` set to ` true ` in ` .spinrc .json` via ` yarn build ` .
4324322 . Run ` yarn exp publish ` to publish, the URL like:
433433 [ ` https://exp.host/@vlasenko/apollo-universal-starter-kit ` ] ( https://exp.host/@vlasenko/apollo-universal-starter-kit )
434434 where your users can access mobile app from Expo Client will be printed in terminal.
435435
436436### Building standalone mobile apps for Play Store and App Store
437437
438- 1 . Compile project for production with ` ios ` and ` android ` set to ` true ` in ` app .json` via ` yarn build ` .
438+ 1 . Compile project for production with ` ios ` and ` android ` set to ` true ` in ` .spinrc .json` via ` yarn build ` .
4394392 . Run ` yarn exp ba ` to launch building signed ` .apk ` or ` yarn exp bi ` for signed ` .iap ` .
4404403 . Run ` yarn exp bs ` to get status and links for signed standalone mobile applications when build finishes. For more
441441 details refer to [ Expo Build standalone apps documentation] , but use ` yarn exp .. ` instead of ` exp ... ` command.
0 commit comments