Minor adjustments for sane default values. Need to come up with a better startup script sometime.

This commit is contained in:
Greg Taylor 2006-12-30 09:22:51 +00:00
parent a0af0811ac
commit 65dad92f8e
3 changed files with 3 additions and 2 deletions

Binary file not shown.

View file

@ -1,3 +1,4 @@
#!/bin/bash
export DJANGO_SETTINGS_MODULE="settings"
export PYTHONPATH=/home/evennia
python server.py

View file

@ -10,7 +10,7 @@ ADMINS = (
MANAGERS = ADMINS
DATABASE_ENGINE = 'sqlite3' # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
DATABASE_NAME = '/home/gtaylor/dev/evennia/evennia.sql' # Or path to database file if using sqlite3.
DATABASE_NAME = '/home/evennia/evennia/evennia.sql' # 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.
@ -33,7 +33,7 @@ USE_I18N = False
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = '/home/gtaylor/dev/evennia/media'
MEDIA_ROOT = '/home/evennia/evennia/media'
# URL that handles the media served from MEDIA_ROOT.
# Example: "http://media.lawrence.com"