*[virtualenv](http://www.virtualenv.org/en/latest/index.html#installation)(to install you will need either [pip](http://www.pip-installer.org/en/latest/installing.html) or easy_install, which is bundled with [setuptools](http://pypi.python.org/pypi/setuptools)
Go to http://127.0.0.1/ in your browser and you should see the website. Though, there won't be any restaurants showing. You will need to add them to the database. Go to http://127.0.0.1/admin/ to add new Restaurant and Schedule objects to your database.
Go to http://127.0.0.1/ in your browser and you should see the website.
Though, there won't be any restaurants showing. You will need to add them to
the database. Go to http://127.0.0.1/admin/ to add new Restaurant and Schedule
objects to your database.
###Modifying and Deploying Code###
With the means of testing the website, you can really start contributing.
If you're new to Django and don't know where to start, I highly recommend
giving the [tutorial](https://docs.djangoproject.com/en/dev/intro/tutorial01/)
a try. However, it leaves out a lot of important things, so remember, Google is
your friend. If you can't figure it out there, ask me.
If you followed the steps in "Set Up" above, once you actually make changes it
should be easy to push them to the git repository.
There are many ways to use git, and this is one example:
```
git commit -a
git push origin master
```
Some more helpful links on how to use Git:
*[Git Reference](http://gitref.org/)
*[OpenHatch's Training Mission](https://openhatch.org/missions/git)