Each boilerplate includes a minimal project to help you get started.
To import boilerplate:
- Go to your assignment repo's directory in your terminal.
- Export the desired boilerplate name from the list below. E.g.,
export boilerplate=mobile-boilerplate-react-native
- Copy-paste and run the following snippet:
cat <<EOF >>init.sh #!/bin/sh git clone git@github.com:DevSkillsHQ/$boilerplate.git rm -rf $boilerplate/.git cp -r $boilerplate app/ rm -rf $boilerplate git add app/ git commit -m 'Init boilerplate' EOF chmod +x init.sh ./init.sh rm init.sh
Available boilerplates
- mobile-boilerplate-react-native
- mobile-boilerplate-android-kotlin
- mobile-boilerplate-android-java
- mobile-boilerplate-ios-swift
- mobile-boilerplate-flutter
Did this article help?
Thank you for your feedback