mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 08:16:30 +01:00
Minor adjustments for sane default values. Need to come up with a better startup script sometime.
This commit is contained in:
parent
a0af0811ac
commit
65dad92f8e
3 changed files with 3 additions and 2 deletions
Binary file not shown.
|
|
@ -1,3 +1,4 @@
|
|||
#!/bin/bash
|
||||
export DJANGO_SETTINGS_MODULE="settings"
|
||||
export PYTHONPATH=/home/evennia
|
||||
python server.py
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue