These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Make sure you have installed all of the following prerequisites on your development machine:
- Git - Download & Install Git. OSX and Linux machines typically have this already installed.
- Node.js - Download & Install Node.js and the npm package manager. If you encounter any problems, you can also use this GitHub Gist to install Node.js.
- Postgres
- Yarn Download & Install Yarn
- Gulp
- Bower
createuser --pwprompt postgres
postgres
postgres
createdb mean_relational
To install the dependencies, run this in the application folder from the command-line:
$ yarn
$ bower install
Run your application using npm:
$ gulp serve-dev
To run your application with production environment configuration, execute grunt as follows:
$ gulp build
$ gulp serve-build
You can run the test suite:
$ gulp test
$ gulp server-tests
You can run the linter:
$ gulp vet