-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_local.template
39 lines (31 loc) · 1.64 KB
/
settings_local.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import os
import settings
# Django local settings for musikbiblio project
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
('your name', '[email protected]'),
)
MANAGERS = ADMINS
# YOU PROBABLY WANT THIS CONFIGURATION IF IT'S A DEVELOPMENT SERVER
DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASE_NAME = os.path.join(settings.PROJECT_DIR, 'core/project.db') # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3.
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'America/Argentina/Buenos_Aires'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-us'
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'Put something secret here, for real!!'
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = 'http://127.0.0.1:8000/static/' # YOU PROBABLY WANT THIS IF IT'S A DEVELOPMENT SERVER