X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=settings.py;h=e759e7644e5b099f407fe81c5bdcc44189067f7f;hb=b4afd7d14f429793f73f1c882ee8c681e3702b81;hp=149f00e7741a2a83baa93bfd00eb4ab4b8e2e247;hpb=68638c05f1a4d211eea98bbb089375aab0da956d;p=webcomics.git diff --git a/settings.py b/settings.py index 149f00e..e759e76 100644 --- a/settings.py +++ b/settings.py @@ -4,20 +4,19 @@ DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( - ('Jerome BENOIT', 'jerome.benoit@grenouille.com'), - ('Toofik Medjamia', 'toofik@toofik.com'), + ('Jérôme BENOIT', 'jerome.benoit@piment-noir.org'), ) MANAGERS = ADMINS DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'django', # Or path to database file if using sqlite3. - 'USER': 'django', # Not used with sqlite3. - 'PASSWORD': 'django', # Not used with sqlite3. - 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3. - 'PORT': '', # Set to empty string for default. Not used with sqlite3. + 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'django', # Or path to database file if using sqlite3. + 'USER': 'django', # Not used with sqlite3. + 'PASSWORD': 'django', # Not used with sqlite3. + 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. } }