bundlebus-cli

A framework for releasing/deploying react-native apps


Keywords
react-native, bundlebus
License
MIT
Install
npm install bundlebus-cli@0.1.11

Documentation

What is BundleBus?

Check BundleBus github page BundleBus

BundleBus cli

  • BundleBus-cli is a module to help the react-native application developers to easily release/deploy their application. Currently, it only supports github.com but will support any other git based repository.

Prerequisite

Download and run BundleBus server

How to install

This command may ask your root permission.

$ npm install bundlebus-cli -g

How to use

Set backend server address

  • I believe you already download and run bundlebus-backend.
  • This command let you set your backend server address.

Command

  • Run below command.
$ bundlebus server <http://youraddress:port>

Register

  • register command will registers your react-native app to the server.

Command

  • Run below command from your react-native-app root folder where package.json reside.
$ bundlebus register
Repository clone url : {Enter your github repository}
Repository - github token : {Enter your github token}
  • Guthub token can be created from this link.

Release

  • release command will pull your sources from the github and build it.

Command

  • Run below command from your react-native-app root folder where package.json reside.
$ bundlebus release <os>

where os should be android or ios.

  • the BundleBus server will pull the git sources and build it.

Deploy

  • Once the app is ready to be published, use deploy command to simply do the job.

Command

  • Run below command from your project root folder where package.json reside.
$ bundlebus deploy <os>

License

The MIT License (MIT)

Copyright (c) 2016-present ZENOME, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.