evennia/INSTALL

73 lines
1.8 KiB
Text
Raw Normal View History

2011-11-14 13:23:57 +01:00
-------------
Evennia Setup
2011-11-14 13:23:57 +01:00
-------------
You can find the updated and more detailed version of this page on
2011-11-14 13:23:57 +01:00
http://code.google.com/p/evennia/wiki/GettingStarted
2011-11-14 13:23:57 +01:00
Installation
------------
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
2011-11-14 13:23:57 +01:00
- django
- twisted + PIL
- mercurial
- django-south (optional, but highly recommended)
* Go to a directory on your harddrive where you want the 'evennia'
directory to be created, for example mud/.
2011-11-14 13:23:57 +01:00
$ cd mud/
2011-11-14 13:23:57 +01:00
* Get a copy of the Evennia source:
2011-11-14 13:23:57 +01:00
$ hg clone https://code.google.com/p/evennia/ evennia
2011-11-14 13:23:57 +01:00
* Change to the evennia/game directory and run the setup scripts.
$ cd evennia/game
$ python manage.py
* Edit the new game/settings.py if needed, then run
2011-11-14 13:23:57 +01:00
(make sure to create an admin account when asked):
$ python manage.py syncdb
2011-11-14 13:23:57 +01:00
* If you use django-south you need to also run
2011-11-14 13:23:57 +01:00
$ python manage.py migrate
Starting Evennia
2011-11-14 13:23:57 +01:00
----------------
* Start the server with
$ python evennia.py -i start
or run without arguments for a menu of launch options.
2011-11-14 13:23:57 +01:00
See http://code.google.com/p/evennia/wiki/StartStopReload for more info.
* Start up your MUD client of choice and point it to your server and port 4000.
If you are just running locally the server name is 'localhost'.
* Alternatively, you can find the web interface and webclient by
pointing your web browser to http://localhost:8000.
* Login with the email address and password you provided when setting up the server.
Welcome to Evennia!
-------------------
* See www.evennia.com for more information and help with how to
proceed from here.
* For questions, see the discussion group or the chat. Report bugs or
request features via the Issue Tracker.