-
Notifications
You must be signed in to change notification settings - Fork 71
Getting Started
Joseph Alves edited this page Apr 16, 2015
·
15 revisions
The purpose of this tool is to generate a foundation for new projects. In order to produce these foundational files, you need to first install the tool:
npm install -g fsgCreate a new directory for your project anywhere on your machine and cd into it:
mkdir insert-project-name-here && cd insert-project-name-hereOnce inside, simply running the command fsg will produce the beginning files.
After you've generated the files, ensure the following commands are run in the project root:
npm installbower installgulp buildIf you do not have bower or gulp installed on your machine, install them using npm install -g.
Finally, the generated project assumes a running MongoDB database on port 27017 (the default MongoDB port).