I am working (again) through the tutorial part 1. I have made changes to 
Engine and Name as specified in the instructions. However, running "python 
manage.py syncdb" continues to return "Please supply the ENGINE value." I 
did not encounter this problem the first time I worked through this 
tutorial.
 
# Django settings for mysite project.

DEBUG = True
TEMPLATE_DEBUG = DEBUG

ADMINS = (
    # ('Your Name', '[email protected]'),
)

MANAGERS = ADMINS

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3', # Add 
'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': 'c:/program files/bitnami 
djangostack/mysite/sqlite3.db',                      # Or path to database 
file if using sqlite3.
        'USER': '',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                      # Set to empty string for 
localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. 
Not used with sqlite3.
    }
}

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/qnfmdfEObKAJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to