Backend: Express - Strong Loop - MongoDb
Before installing, make sure you have recent versions of Git, Vagrant and VirtualBox installed on your development machine.
Then, simply clone the repository:
git clone [email protected]:romulobr/comida.git
And create a Vagrant machine from the root of the project:
cd comida
vagrant up
This will download and install all the required dependencies, and set up the database for you. To make sure everything worked well, try running the application:
./gulp serve
Remember to use the ./gulp
wrapper script (not a version of Gulp you
might have globally installed on your system) if you'd like to keep all
the running code inside the Vagrant machine. This way, you don't have
to install anything else locally.
By default, the application is exposed on port 3001. You should be able to visit http://localhost:3001/index and see an empty instance.
The MongoDB instance is also visible to your machine on port 27018.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
This project rocks and uses the MIT LICENSE.