summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2010-01-16 23:00:01 -0500
committerMike Crute <mcrute@gmail.com>2010-01-16 23:00:01 -0500
commit0da82a61258597ccdecc02a55d71def85025e4a2 (patch)
treee1e8a480547067f7330e7adc4e2b6d7eb9321e3c
parent0100adcca74837ad7b2e7f6d5a416113e11e3fdb (diff)
downloadgreenbox-0da82a61258597ccdecc02a55d71def85025e4a2.tar.bz2
greenbox-0da82a61258597ccdecc02a55d71def85025e4a2.tar.xz
greenbox-0da82a61258597ccdecc02a55d71def85025e4a2.zip
Updated routes for move to /srv
-rwxr-xr-xgreenbox/settings.py4
-rwxr-xr-xgreenbox/urls.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/greenbox/settings.py b/greenbox/settings.py
index 1c9d387..1b5ab35 100755
--- a/greenbox/settings.py
+++ b/greenbox/settings.py
@@ -10,7 +10,7 @@ ADMINS = (
10MANAGERS = ADMINS 10MANAGERS = ADMINS
11 11
12DATABASE_ENGINE = 'sqlite3' 12DATABASE_ENGINE = 'sqlite3'
13DATABASE_NAME = 'greenbox.db' 13DATABASE_NAME = '/srv/greenbox/greenbox.db'
14 14
15TIME_ZONE = 'America/New_York' 15TIME_ZONE = 'America/New_York'
16LANGUAGE_CODE = 'en-us' 16LANGUAGE_CODE = 'en-us'
@@ -28,7 +28,7 @@ MEDIA_URL = ''
28# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a 28# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
29# trailing slash. 29# trailing slash.
30# Examples: "http://foo.com/media/", "/media/". 30# Examples: "http://foo.com/media/", "/media/".
31ADMIN_MEDIA_PREFIX = '/recipe/media/' 31ADMIN_MEDIA_PREFIX = '/media/'
32 32
33SECRET_KEY = 'zki4e4!80ar7^1w6f_c2u^5#=r(7#4%0u^3il^@__#3zf^u+f)' 33SECRET_KEY = 'zki4e4!80ar7^1w6f_c2u^5#=r(7#4%0u^3il^@__#3zf^u+f)'
34 34
diff --git a/greenbox/urls.py b/greenbox/urls.py
index 683a1da..9202bff 100755
--- a/greenbox/urls.py
+++ b/greenbox/urls.py
@@ -13,5 +13,5 @@ urlpatterns = patterns('',
13 # (r'^admin/doc/', include('django.contrib.admindocs.urls')), 13 # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14 14
15 # Uncomment the next line to enable the admin: 15 # Uncomment the next line to enable the admin:
16 (r'^recipe/admin/', include(admin.site.urls)), 16 (r'^admin/', include(admin.site.urls)),
17) 17)