springmeyer / django-tiles

A simple proof-of-concept demo application for serving map tiles using a variety of map renderers as switchable backends.

commit 1: 0fed38f25c91
parent 0: 4d0b49a35f58
branch: default
don't need any database stuff for default config
spr...@gmail.com
13 months ago

Changed (Δ0 bytes):

raw changeset »

settings.py (12 lines added, 12 lines removed)

Up to file-list settings.py:

@@ -12,12 +12,12 @@ ADMINS = (
12
12
13
13
MANAGERS = ADMINS
14
14
15
DATABASE_ENGINE = 'postgresql_psycopg2'
16
DATABASE_NAME = 'tile'
17
DATABASE_USER = 'postgres'
18
DATABASE_PASSWORD = ''
19
DATABASE_HOST = ''
20
DATABASE_PORT = ''
15
#DATABASE_ENGINE = 'postgresql_psycopg2'
16
#DATABASE_NAME = ''
17
#DATABASE_USER = ''
18
#DATABASE_PASSWORD = ''
19
#DATABASE_HOST = ''
20
#DATABASE_PORT = ''
21
21
22
22
TIME_ZONE = 'America/Vancouver'
23
23
@@ -64,12 +64,12 @@ TEMPLATE_DIRS = (
64
64
)
65
65
66
66
INSTALLED_APPS = (
67
    'django.contrib.auth',
68
    'django.contrib.contenttypes',
69
    'django.contrib.sessions',
70
    'django.contrib.sites',
71
    'django.contrib.admin',
72
    'django.contrib.humanize',
67
    #'django.contrib.auth',
68
    #'django.contrib.contenttypes',
69
    #'django.contrib.sessions',
70
    #'django.contrib.sites',
71
    #'django.contrib.admin',
72
    #'django.contrib.humanize',
73
73
    #'registration',
74
74
    'tiles',
75
75
)