I'm attempting to integrate social signon into a project, and am following along this tutorial: http://www.artandlogic.com/blog/2014/04/tutorial-adding-facebooktwittergoogle-authentication-to-a-django-application/.
Step #4 shows that the project requires a 'real url'. It appears you used to be able to specify a url when running manage.py runserver example.com (https://code.djangoproject.com/ticket/14928)
However, on Django 1.6.5 this results in CommandError: "example.com" is not a valid port number or address:port pair.
What is the easiest way to run a local webserver so that my django project appears at whateverurl.com?