From 16efb3320316817085f18908889bcf8de4e652f1 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 11 Jan 2006 17:48:41 +0000 Subject: [PATCH] Updated tutorial01.txt to note possible error about DATABASE_ENGINE git-svn-id: http://code.djangoproject.com/svn/django/trunk@1912 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial01.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index 1ef5437467..004c3ba61d 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -76,6 +76,11 @@ command line:: Go to http://127.0.0.1:8000/ for Django. Quit the server with CONTROL-C (Unix) or CTRL-BREAK (Windows). +(If you get an error about ``DATABASE_ENGINE``, edit your ``settings.py`` file +to change the ``DATABASE_ENGINE`` setting to point to the correct database, and +make sure you have the right database libraries installed -- such as PostgreSQL's +psycopg or MySQL's MySQLdb.) + You've started the Django development server, a lightweight, pure-Python Web server that builds on the BaseHTTPServer included in Python's standard library. We've included this with Django so you can develop things rapidly, without