2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
-------------
|
|
|
|
|
Evennia Setup
|
|
|
|
|
-------------
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
You can find the updated and more detailed version of this page on
|
|
|
|
|
http://code.google.com/p/evennia/wiki/GettingStarted
|
2007-05-27 23:20:44 +00:00
|
|
|
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
Installation
|
|
|
|
|
------------
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
* Make sure you have/install the prerequsites with minimum versions
|
|
|
|
|
listed on http://code.google.com/p/evennia/wiki/GettingStarted:
|
|
|
|
|
- python
|
|
|
|
|
- django
|
|
|
|
|
- twisted + PIL
|
|
|
|
|
- mercurial
|
|
|
|
|
- django-south (optional)
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
* Go to a directory on your harddrive where you want the "evennia"
|
|
|
|
|
directory to be created.
|
|
|
|
|
|
|
|
|
|
$ cd mud/
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
* Get a copy of the Evennia source:
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
$ hg clone https://code.google.com/p/evennia/ evennia
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
* Change to the evennia/game directory and run the setup scripts.
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
$ cd evennia/game
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
$ python manage.py
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
* Edit the new game/settings.py if needed, then run
|
|
|
|
|
(make sure to create an admin account when asked):
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
$ python manage.py syncdb
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
* If you use django-south you need to also run
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
$ python manage.py migrate
|
2010-08-29 18:46:58 +00:00
|
|
|
|
|
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
Starting Evennia
|
|
|
|
|
----------------
|
2011-09-03 10:22:19 +00:00
|
|
|
|
2011-11-14 13:23:57 +01:00
|
|
|
$ python evennia.py -i start
|
|
|
|
|
or
|
|
|
|
|
$ python evennia.py
|
|
|
|
|
|
|
|
|
|
for a menu of launch options.
|
|
|
|
|
See http://code.google.com/p/evennia/wiki/StartStopReload for more info.
|
2010-08-29 18:46:58 +00:00
|
|
|
|
|
|
|
|
* Start up your MUD client of choice and point it to your server and port 4000.
|
2011-09-03 10:22:19 +00:00
|
|
|
If you are just running locally the server name is 'localhost'.
|
2010-08-29 18:46:58 +00:00
|
|
|
|
2011-09-03 10:22:19 +00:00
|
|
|
* Alternatively, you can find the web interface and webclient by
|
2011-02-05 18:25:09 +00:00
|
|
|
pointing your web browser to http://localhost:8000.
|
|
|
|
|
|
2007-05-04 16:58:56 +00:00
|
|
|
* Login with the email address and password you provided to the syncdb script.
|
2010-08-29 18:46:58 +00:00
|
|
|
Welcome to Evennia!
|
|
|
|
|
|
2011-02-05 18:25:09 +00:00
|
|
|
See also "Getting Started" on www.evennia.com for more verbose instructions and
|
|
|
|
|
the documentation wiki for further help.
|