- After cloning / downloading the github repo. Go to
cd django
- Create virtual environment
python3 -m venv rvenv
(Make sure you have Python 3 installed) - Activate virtual environment Mac :
source rvenv/bin/activate
Windows :rvenv\Scripts\activate
then go tocd searchrestaurant
- Install requirements
pip install -r requirements.txt
- Run Django site
python manage.py runserver
- Search on home page
http://127.0.0.1:8000
and see the result! - [Optional]
python manage.py makemigrations
andpython manage.py migrate
- Add Google Places API and Foursquare KEYS in project's settings.py
searchrestaurant/settings.py
- Integrate jquery
- Show list of the restaurants in nearby area without having to enter anything
Pull requests are welcomed!