First time here? Check out the FAQ!

Revision history  [back]

first create a virtual environment

virtualenv askbotenv --no-site-packages
source askbotenv/bin/activate

install askbot

pip install askbot

now edit

you will need to merge settings.py(http://github.com/ASKBOT/askbot-devel/blob/master/askbot/setup_templates/settings.py) and urls.py(http://github.com/ASKBOT/askbot-devel/blob/master/askbot/setup_templates/urls.py) into your django project manually.

The templates to be used can be found in the askbot/setup_templates subdirectory.

visit for more info:

http://askbot.org/doc/initial-configuration.html#adding-askbot-to-an-existing-django-project

first create a virtual environment

virtualenv askbotenv --no-site-packages
source askbotenv/bin/activate

install askbot

pip install askbot

now edit

you will need to merge settings.py(http://github.com/ASKBOT/askbot-devel/blob/master/askbot/setup_templates/settings.py) and urls.py(http://github.com/ASKBOT/askbot-devel/blob/master/askbot/setup_templates/urls.py) into your django project manually.

The templates to be used can be found in the askbot/setup_templates subdirectory.

visit for more info:visit

http://askbot.org/doc/initial-configuration.html#adding-askbot-to-an-existing-django-project

it has a very nice tutorial