[Fixed]-Python development: Server Handling

1👍

manage.py runserver is only used to speed your development process, it shouldn’t be run on your server. It’s similar to the newly introduced php’s built-in server php -S host:port.

Since you’re coming from PHP you can use apache with mod_wsgi in order to serve your django application, there are a lot of tutorials online on how to configure it properly. You might want to read what wsgi is and why it’s important.

👤Ali

Leave a comment