Skip to content

gaokuande/myrecommendations

 
 

Repository files navigation

MyRecommendations

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.

Tools

Key tools used in this Django project are:

How to run:

  1. Clone the whole repository to your machine.
  2. cd into root folder, use command pip install -r requirements.txt
  3. 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()
  1. Run the server by command python manage.py runserver

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 75.4%
  • HTML 23.3%
  • CSS 1.3%