Your application!
This application is built on the moltres application framework.
An app built using moltres is a full fledged mobile app (iOS and Android) as well as web app.
Setup your firebase application on https://firebase.google.com/
- Create a new repository on github using this repo as the template.
- Modify the application name in
package.json
- Follow the steps in DEVELOPMENT.md to get your application running.
- Add this repo as a remote to your repo
git remote add template https://github.com/brianneisler/moltres-template.git
- Then fecth master from template
git fetch template master
- checkout a new branch in your project
git checkout -b updates-from-template
- merge template master and allow for different hostories
git merge template/master --allow-unrelated-histories
-
Now you can either open a PR for these updates by pushing this branch remotely and opening a PR on github
-
OR you can merge your branch into master
git checkout master
git merge updates-from-template