1👍
✅
The project structure generated by startproject
changed since 1.3. Before 1.4 release, you had to manually create a wsgi
file. Since 1.4, Django automatically creates wsgi.py
file in the project root.
Continue using wsgi.py
that Django created for you.
1👍
A Django 1.6 already has a default WSGI configuration as you can see in your wsgi.py
file, nothing else is needed. The instructions you mention are for legacy Django projects.
See https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ for more information on the Django WSGI config.
- [Answered ]-Pass amount from Stripe checkout for to view function in Django
- [Answered ]-Django display a view in every page
- [Answered ]-Getting Error with Django Phone Number Form Field
- [Answered ]-Search form in Django
- [Answered ]-How to pass url to a model field lookup in django
Source:stackexchange.com