[Answered ]-How to make the Django light weight server loads quickly

2👍

It could be taking a while due to time of database connections opening. Are you running your database locally?

You can also enable things like auto-reload based on code changes by installing the django-extensions and using ./manage.py runserver_plus.

Also look at using the django-debug-toolbar to profile SQL queries and look at what is coming through to your app.

👤Ewan

Leave a comment