diff --git a/index.js b/index.js index 21bc82ed..5b9ec6c8 100755 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ program program .command('new ') - .option('-s, --scaffold ', 'The framework to use. Options include react, angular, vuejs, nextjs and node.') + .option('-s, --scaffold ', 'The framework to use. Options include react, angular, vuejs, nextjs, ios and node.') .option('-r, --restURL ', 'The rest URL to use. default: https://rest.bitbox.earth/v1/') .option('-e, --environment ', 'environment of running BITBOX instance. Ex: production, staging. (Default: development)') .description(`create a new BITBOX application`) @@ -68,6 +68,8 @@ program repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-next.git'; } else if(scaffold === 'react') { repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-react.git'; + } else if(scaffold === 'ios') { + repo = 'https://github.com/Unknownamae/bitbox-scaffold-ios.git'; } else if(scaffold === 'vue') { repo = 'https://github.com/Bitcoin-com/bitbox-scaffold-vue.git'; } else {