I disagree with the "how to install" section.
I use Nginx and uwsgi to host Django applications.
There are other ways to deploy it too.

The section makes it seem like the only 'real' way would be Apache.

Lastly, it doesn't seem to touch on how a lot of people actually
install and deploy django projects.  My workflow is pretty simple
compared to what the install section says:

apt-get install python-pip python-virtualenv virtualenvwrapper
cd code
mkvirtualenv some-django-project
pip install django
django-admin startproject somedjangoproject
cd somedjangoproject
python manage.py startapp app1

Using virtualenv should also take care of the problem listed in
"Remove any old versions of Django".

I'd hate for someone to not get the job because they give a
"non-textbook" answer. ;)

-A


On Tue, Sep 4, 2012 at 5:10 AM, Stephen Anto <charvigro...@gmail.com> wrote:
> Hi Guys,
>
> I have updated Django latest interview questions and answers. It may cover
> all technical requirements of the interview.
>
> Vist http://www.f2finterview.com/web/Django/ for latest Django interview
> questions and answers
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to