Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 0.63 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. DATABASES = {
  2.  
  3.     'default': {
  4.  
  5.         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  6.  
  7.         'NAME': '/Users/robert/Desktop/test/development/forknsite/database.db',                      # Or path to database file if using sqlite3.
  8.  
  9.         'USER': '',                      # Not used with sqlite3.
  10.  
  11.         'PASSWORD': '',                  # Not used with sqlite3.
  12.  
  13.         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
  14.  
  15.         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
  16.  
  17.     }
  18.  
  19. }