Changes between Version 7 and Version 8 of IrcFAQ
- Timestamp:
- Feb 20, 2007, 4:40:07 PM (18 years ago)
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. 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. Please don't editorialize. 2 2 3 3 = Python questions = … … 38 38 == What should I use for development -- the built-in server, mod_python, FastCGI? == 39 39 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.40 It'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.) 41 41 42 42 == What's the difference between {{{null=True}}} and {{{blank=True}}} in models? ==