The Applicaster Developer Portal goal is to be the home for all the Zapp Plugins technical documentation and guides and legacy applicaster.developer.com content. The main sections in the book are Zapp-pipes, Zapp React Native Plugins, Zapp-iOS & Zapp-Android.
Any change or adding new doc is done by creating a Pull Request and having it reviewed by GitHub "review" process.
The book content is located at the book
folder. The main file that defines the book structure is /book/SUMMARY.md
.
To find out more on how to arrange the content read the following:
npm start
+ openhttp://localhost:4000/
- Optional: to override default port, use
PORT=4001 npm start
Updating existing document is a very easy task, just clone the repo, create a new branch, change the doc, push it and create a new Pull Request (don't forget to assign it to review).
Adding a new document can be easily done by the following steps:
- Clone the repo.
- Run
npm install
. - Create a new branch.
- Add the new
.md
file under the relevant folder. - Add the file to the right place in the
/book/SUMMARY.md
according to the Pages and Summary guide. - Test your code locally by running the gitbook with
npm start
and checking the result inhttp://localhost:4000/
. - Push the code.
- Create the pull request.
There is a known issue with the gitbook stack that npm install
might fail.
In this please delete your modules directory (rm -rf node_modules/
)