Re: installing django application on non-django website.

2010-01-10 Thread flynnguy
It looks like what you've linked to is a full project. In order to use any part of Django, you need to setup a Django instance. You will need to go configure apache to pass requests going to example.com/weblog/ to Django, specifically your project folder. The url.py folder then handles the rest. -

installing django application on non-django website.

2010-01-10 Thread gryzzly
I have a website that is a bunch of html files, deployed trhough apache. (let's say, example.com) What do I need to do in order to deploy one django application (let's say http://github.com/vbabiy/django_blog) on example.com/weblog/? I know how to plug an application into existing django project,