First time here? Check out the FAQ!

ezequielc's profile - activity

2015-01-14 07:34:40 -0500 received badge Popular Question (source)
2015-01-14 07:34:40 -0500 received badge Notable Question (source)
2014-08-17 05:34:38 -0500 received badge Famous Question (source)
2014-08-15 10:35:02 -0500 answered a question list of askbot sites

http://tiraduvidas.net is general topics Q&A in portuguese.

2014-07-29 08:20:16 -0500 answered a question How to run askbot on gunicorn?

I found a solution.

I had to rename django.wsgi to wsgi.py and run

gunicorn wsgi:application

Hope it helps!

2014-07-28 10:37:29 -0500 asked a question How to run askbot on gunicorn?

I am struggling to have askbot running on gunicorn. Previously, we could use

python manage.py run_gunicorn

But now I get a warning:

!!!
!!! WARNING: This command is deprecated.
!!! 
!!!         You should now run your application with the WSGI interface
!!!         installed with your project. Ex.:
!!! 
!!!             gunicorn myproject.wsgi:application
!!! 
!!!         See https://docs. djangoproject.com/en/1.5/howto/deployment/wsgi/gunicorn/
!!!         for more info.
!!!

So, how can I run it now?