Changes between Version 7 and Version 8 of IrcFAQ


Ignore:
Timestamp:
Feb 20, 2007, 4:40:07 PM (17 years ago)
Author:
Paul Bx <pb@…>
Comment:

incorporated editorial comment

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v7 v8  
    1 This is a work in progress, answering questions that do indeed get asked frequently on the Django IRC channel. Feel free to contribute, but try to keep it clear and concise.
     1This is a work in progress, answering questions that do indeed get asked frequently on the Django IRC channel. Feel free to contribute, but try to keep it clear and concise. Please don't editorialize.
    22
    33= Python questions =
     
    3838== What should I use for development -- the built-in server, mod_python, FastCGI? ==
    3939
    40 It's generally best to use the built-in development server. It automatically reloads your Python source files when it detects changes. I beg to differ - the development server is fine for using before you decide on opting for django. Once you start *real* development, it is better to replicate the production environment as closely as possible.
     40It's generally easiest to use the built-in development server, since it automatically reloads your Python source files when it detects changes. (Some prefer to replicate the production environment as closely as possible, meaning that if their deployed project uses mod_python then their development server does as well.)
    4141
    4242== What's the difference between {{{null=True}}} and {{{blank=True}}} in models? ==
Back to Top