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?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
pythonwannabehero's avatar
1
pythonwannabehero
updated 14 years ago, asked 14 years ago

Comments

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Zhiz0id's avatar
58
Zhiz0id
answered 13 years ago
link

Comments

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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 14 years ago, answered 14 years ago
link

Comments

see more comments