Revision history [back]
All right, I hope this will help some people to get started using Askbot as a reusable(pluggable) app with Django.
I created a repo integrating Django 1.5 and Askbot. I've tested with sqlite3 and postgresql and I had no problems so far running it.
Here are the instructions:
git clone git@github.com:raonyguimaraes/askbot_reusable.git
cd askbot_reusable
pip install -r requirements.txt
python manage.py collectstatic
python manage.py syncdb --migrate --noinput
python manage.py runserver
I really think this should be provided or at least mentioned in http://askbot.org/doc/askbot-as-reusable-django-application.html
Any suggestions? Good Luck!
All right, I hope this will help some people to get started using Askbot as a reusable(pluggable) app with Django.
I created a repo integrating Django 1.5 and Askbot. I've tested with sqlite3 and postgresql and I had no problems so far running it.
Here are the instructions:
git clone git@github.com:raonyguimaraes/askbot_reusable.git
cd askbot_reusable
pip install -r requirements.txt
python manage.py collectstatic
python manage.py syncdb --migrate --noinput
syncdb
python manage.py runserver
I really think this should be provided or at least mentioned in http://askbot.org/doc/askbot-as-reusable-django-application.html
Any suggestions? Good Luck!