Changeset 849
- Timestamp:
- 10/12/05 08:25:24 (3 years ago)
- Files:
-
- django/trunk/docs/install.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/install.txt
r484 r849 22 22 23 23 If you can't use mod_python for some reason, fear not: Django follows the WSGI_ 24 spec, which allows it to run on a variety of server platforms. As people25 experiment with different server platforms, we'll update this document to 26 give specific installation instructions foreach platform.24 spec, which allows it to run on a variety of server platforms. See the 25 `server-arrangements wiki page`_ for specific installation instructions for 26 each platform. 27 27 28 28 .. _Apache: http://httpd.apache.org/ … … 30 30 .. _WSGI: http://www.python.org/peps/pep-0333.html 31 31 .. _How to use Django with mod_python: http://www.djangoproject.com/documentation/modpython/ 32 .. _server-arrangements wiki page: http://code.djangoproject.com/wiki/ServerArrangements 32 33 33 34 Get your database running … … 37 38 make sure a database server is running. Django works with PostgreSQL_ 38 39 (recommended), MySQL_ and SQLite_. 39 40 Note that support for MySQL and SQLite is a recent development, and Django41 hasn't been comprehensively tested in those environments. If you find any bugs42 in Django's MySQL or SQLite bindings, please file them in43 `Django's ticket system`_ so we can fix them immediately.44 40 45 41 Additionally, you'll need to make sure your Python database bindings are
