diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-11 17:48:41 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-11 17:48:41 +0000 |
| commit | 16efb3320316817085f18908889bcf8de4e652f1 (patch) | |
| tree | 6dc0ce1c675c4040054eb919daa6207fd4530e7c /docs/tutorial01.txt | |
| parent | 2e997f9a63d4d69ea419e0bdae1df500df874861 (diff) | |
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
Diffstat (limited to 'docs/tutorial01.txt')
| -rw-r--r-- | docs/tutorial01.txt | 5 |
1 files changed, 5 insertions, 0 deletions
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 |
