(projectName)
| 29 | }; |
| 30 | // show more details message using chalk |
| 31 | const showMoreDetails = (projectName) => { |
| 32 | consola.box( |
| 33 | 'Your project is ready to go! \n\n\n', |
| 34 | '๐ To get started, run the following commands: \n\n', |
| 35 | ` \`cd ${projectName}\` \n`, |
| 36 | ' IOS : `pnpm ios` \n', |
| 37 | ' Android : `pnpm android` \n\n', |
| 38 | '๐ Starter Documentation: https://starter.obytes.com' |
| 39 | ); |
| 40 | }; |
| 41 | |
| 42 | module.exports = { |
| 43 | runCommand, |