Changes between Version 64 and Version 65 of IrcFAQ


Ignore:
Timestamp:
Apr 15, 2008, 12:28:57 PM (17 years ago)
Author:
Paul Bissex
Comment:

added Apache-vs-runserver item

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v64 v65  
    9090If you're running Apache, read this: http://www.djangoproject.com/documentation/modpython/#serving-media-files
    9191
     92== Do I really have to restart Apache every time I change my code in order to see my changes? == #UseTheDevServer
     93
     94In short, yes. Apache is great for deployment, but generally not the best choice for development -- use the [http://www.djangoproject.com/documentation/django-admin/#runserver-optional-port-number-or-ipaddr-port built in development server instead]. It automatically reloads when it detects code changes.
     95
    9296== Do I have to hard-code my media URL in all my templates for CSS, images and Javascript? == #MediaURL
    9397
Back to Top