Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 885 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 885 Bytes

Fi Seed

A boilerplate for Node.js + Express applications with MongoDB and AngularJS on the frontend, aka, MEAN.

Using as base structure

To create an application based on Fi Seed just fork this repo somewhere else. If you want, you can also add it as upstream to an existing repo:

First, check if it isn't already as upstream:

git remote -v

Add the Fi Seed repo as upstream:

git remote add upstream https://github.com/finaldevstudio/fi-seed.git

Verify it has been added:

git remote -v

Then, fetch the upstream:

git fetch upstream

Switch to your [master] or the branch to merge Fi Seed into:

git checkout master

And merge the upstream changes into your branch:

git merge upstream/master

That's it! you have a Fi Seed clone. You can repeat the previous steps to merge updates from the Fi Seed repo.