302
|
1 # Import sane defaults: |
|
2 from settings_default import * |
|
3 |
|
4 # Don't send e-mails for real, display them on the console: |
|
5 EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' |
|
6 # Alternatively, local mailbox: |
|
7 #EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend' |
|
8 #EMAIL_FILE_PATH = '/tmp/app-messages' # change this to a proper location |
304
|
9 # Alternatively: in memory, with an interface at localhost:8000/dev/webmail/ |
302
|
10 #EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend' |
|
11 |
|
12 # Configure database access |
|
13 DATABASES = { |
|
14 'default': { |
|
15 'NAME': 'savane', |
|
16 'ENGINE': 'django.db.backends.mysql', |
|
17 'USER': 'savane', |
|
18 'PASSWORD': 'savane', |
|
19 } |
|
20 } |
|
21 |
|
22 # Your other configuration parameters here (cf. settings_default). |