I found out about Werkzeug. It was supposed to solve my issue. To install it run system-wide
sudo pip install werkzeugI made a runner script run.py that makes a dev server with Werkzeug and voila:
run.py
from werkzeug.serving import run_simple from wsgi import application run_simple('127.0.0.1', 4000, application)
where wsgi.py is former django.wsgi file.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.