Alto Build Client for PGB like functionality
altopgb
=======
Alto Build Client for PGB like functionality





* Usage
* Commands
* Codesigning
sh-session
$ npm install -g altopgb
$ altopgb COMMAND
running command...
$ altopgb (-v|--version|version)
altopgb/0.0.5 win32-x64 node-v12.6.0
$ altopgb --help [COMMAND]
USAGE
$ altopgb COMMAND
...
`
Commands
* [altopgb build PLATFORM [BUILDTYPE]](#altopgb-build-platform-buildtype)
* [altopgb help [COMMAND]](#altopgb-help-command)altopgb build PLATFORM [BUILDTYPE]Build your app on Alto Build like PGB would do.
`
USAGE
$ altopgb build PLATFORM [BUILDTYPE]ARGUMENTS
PLATFORM (android|ios) [default: android] platform to build
BUILDTYPE (development|adhoc|appstore|enterprise) [default: development] what type of build to create
OPTIONS
-c, --certificatePassword=certificatePassword password to access the certificate
`_See code: src\commands\build.js_
altopgb help [COMMAND]display help for altopgb
`
USAGE
$ altopgb help [COMMAND]ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
`_See code: @oclif/plugin-help_
Codesigning
iOS
- Create a folder
certificates in your project
- Copy your .p12 and .mobileprovision files into that folder
- Use altopgb build ios as usual for the default built type (development), or add another argument for the other build types (appstore, adhoc, enterprise), e.g. altopgb build ios appstore, to build your app with codesigning
- The CLI will ask you for your certificate password, or you can supply it to the command via a flag: altopgb build ios appstore --certificatePassword=123456`