Skip to content

Commit

Permalink
Missed a piece of code from postgresql removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Edgy Edgecombe committed Jul 26, 2014
1 parent 9fffb99 commit 3945ce5
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions django_start_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,6 @@ This is already set up in this part of your `mysite/settings.py` file:
}
}

And replace it with this:

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'djangogirls',
'USER': 'yourname',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '',
}
}

Make sure to replace `yourname` with the username you created in __Database__ section, then save the file.

To create a database for our blog, let's run the following in the console: `python manage.py syncdb` (we need to be in a parent `mysite` directory that contains `manage.py` file). If that goes well, you should see something like this:

(myvenv) ~/djangogirls$ python manage.py syncdb
Expand Down

0 comments on commit 3945ce5

Please sign in to comment.