mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 22:36:31 +01:00
25 lines
863 B
Bash
Executable file
25 lines
863 B
Bash
Executable file
#!/bin/bash
|
|
export DJANGO_SETTINGS_MODULE="settings"
|
|
|
|
## Uncomment whichever python binary you'd like to use to run the game.
|
|
## Evennia is developed on 2.5 but should be compatible with 2.4.
|
|
# PYTHON_BIN="python"
|
|
# PYTHON_BIN="python2.4"
|
|
PYTHON_BIN="python2.5"
|
|
|
|
## The name of your logfile.
|
|
LOGNAME="logs/evennia.log"
|
|
## Where to put the last log file from the game's last running
|
|
## on next startup.
|
|
LOGNAME_OLD="logs/evennia.log.old"
|
|
mv $LOGNAME $LOGNAME_OLD
|
|
|
|
## There are several different ways you can run the server, read the
|
|
## description for each and uncomment the desired mode.
|
|
|
|
## Generate profile data for use with cProfile.
|
|
# $PYTHON_BIN -m cProfile -o profiler.log -s time server.py
|
|
## Interactive mode. Good for development and debugging.
|
|
#$PYTHON_BIN server.py
|
|
## Stand-alone mode. Good for running games.
|
|
nohup $PYTHON_BIN server.py > $LOGNAME &
|