Recommendation applications developed using Django, including for the moment just:
- MyRestaurants
I write this based on rogargo tutorial and I am trying to add some new features on my own.
Key tools used in this Django project are:
- Clone the whole repository to your machine.
- cd into root folder, use command
pip install -r requirements.txt
- build new user like
user@host> manage.py shell
>>> from django.contrib.auth.models import User
>>> user=User.objects.create_user('foo', password='bar')
>>> user.is_superuser=True
>>> user.is_staff=True
>>> user.save()
- Run the server by command
python manage.py runserver