diff options
author | bnewbold <bnewbold@robocracy.org> | 2011-04-20 14:51:15 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2011-04-20 14:51:15 -0400 |
commit | 29c8d46a9e2dffbb092649909fffb0858f6739d4 (patch) | |
tree | 50a4359c698aff91922c2a3ac5e0448bbcbb4e0e | |
parent | a3bd2f3ba01ae760a21ab4da1e69c260c696383c (diff) | |
download | piccast-29c8d46a9e2dffbb092649909fffb0858f6739d4.tar.gz piccast-29c8d46a9e2dffbb092649909fffb0858f6739d4.zip |
file shuffling
-rw-r--r-- | piccast/settings.py.example (renamed from piccast/settings.py) | 10 | ||||
-rw-r--r-- | www/robots.txt | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/piccast/settings.py b/piccast/settings.py.example index 138ae6c..6d251a1 100644 --- a/piccast/settings.py +++ b/piccast/settings.py.example @@ -9,8 +9,8 @@ ADMINS = ( MANAGERS = ADMINS -DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '' # Or path to database file if using sqlite3. +DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. +DATABASE_NAME = '../piccast-test.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. @@ -35,17 +35,17 @@ USE_I18N = True # Absolute path to the directory that holds media. # Example: "/home/media/media.lawrence.com/" -MEDIA_ROOT = '' +MEDIA_ROOT = '../media/' # 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 = '' +MEDIA_URL = '/media/' # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a # trailing slash. # Examples: "http://foo.com/media/", "/media/". -ADMIN_MEDIA_PREFIX = '/media/' +ADMIN_MEDIA_PREFIX = '/media/admin/' # Make this unique, and don't share it with anybody. SECRET_KEY = '_n!6_-zzk4@-#jlc&3=dbze#-aov)v(z4+t2te4&5#f80ckl1d' diff --git a/www/robots.txt b/www/robots.txt new file mode 100644 index 0000000..a4751e2 --- /dev/null +++ b/www/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: * |