Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brianneisler/moltres-template
Firebase application template built on moltres framework
https://github.com/brianneisler/moltres-template
application-template cms firebase firebase-application moltres react react-native
Last synced: 3 months ago
JSON representation
Firebase application template built on moltres framework
- Host: GitHub
- URL: https://github.com/brianneisler/moltres-template
- Owner: brianneisler
- License: apache-2.0
- Created: 2016-07-24T23:47:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T09:09:58.000Z (almost 2 years ago)
- Last Synced: 2024-04-14T22:46:43.871Z (10 months ago)
- Topics: application-template, cms, firebase, firebase-application, moltres, react, react-native
- Language: JavaScript
- Homepage: http://moltres.io
- Size: 9.73 MB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# moltres
Your application!
This application is built on the
[moltres](https://github.com/brianneisler/moltres) application framework.An app built using moltres is a full fledged mobile app (iOS and Android) as well as web app.
## Project Status
[![license](https://img.shields.io/npm/l/moltres.svg)](https://www.npmjs.com/package/moltres)
[![build status](https://brianneisler.semaphoreci.com/badges/moltres-template.svg?style=shields)](https://brianneisler.semaphoreci.com/projects/moltres-template)
[![codecov](https://codecov.io/gh/brianneisler/moltres-template/branch/master/graph/badge.svg)](https://codecov.io/gh/brianneisler/moltres-template)## Getting Started
Setup your firebase application on https://firebase.google.com/
### Creating a new application
* 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](./DEVELOPMENT.md) to get your application
running.### Updating your application with changes from template
* 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
```