First time here? Check out the FAQ!
0

can I run askbot on tornado instead of django

is it easy to make askbot sourcecode work on tornado? any guidelines?

pythonwannabehero's avatar
1
pythonwannabehero
updated 2010-09-21 16:58:51 -0500, asked 2010-09-21 01:22:31 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

1

You can find simple tutorial for askbot/django + tornado there: Deploying Django Projects on Tornado

Also you need to patch tornado/wsgi.py in some places.

It is works for me.

Zhiz0id's avatar
58
Zhiz0id
answered 2011-05-28 20:17:55 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
0

Tornado is a webserver, django is not. I think if you really want it you can run askbot through tornado instead of some other webserver. It's unlikely that you will benefit from such configuration at this point because askbot does not yet heavily use asynchronous communication.

However running askbot without django is impossible, because it is written using Django framework. Just look at the askbot source code and see how many times there is a statement like from django... import xyz.

Evgeny's avatar
13.2k
Evgeny
updated 2010-09-21 08:12:01 -0500, answered 2010-09-21 08:10:10 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments