evennia/docs/source/Setup/Setup-Quickstart.md

94 lines
2.9 KiB
Markdown
Raw Normal View History

2020-06-19 20:48:00 +02:00
# Setup quickstart
The Evennia server is installed, run and maintained from the terminal (console/CMD on Windows). Starting the
server doesn't make anything visible online. Once you download everything you can in fact develop your game
in complete isolation if you want, without needing any access to the internet.
## Installation
Evennia requires Python3.7+. As with most Python packages, using a
2020-06-19 22:20:17 +02:00
[virtualenv](../Glossary#virtualenv) is recommended in order to keep your
2020-06-19 20:48:00 +02:00
installation independent from the system libraries. It's _not_ recommended
to install Evennia as superuser.
pip install evennia
2020-06-19 22:20:17 +02:00
Make sure the `evennia` command works. Use `evennia -h` for usage help (or read on).
2020-06-19 20:48:00 +02:00
2020-06-19 22:20:17 +02:00
If you are having trouble, want to install in some other way (like with Docker) or want to contribute to
2020-07-11 00:14:13 +02:00
Evennia itself, check out the [Extended Installation instructions](./Extended-Installation).
It also has a [troubleshooting section](./Extended-Installation#Troubleshooting) for different operating
2020-06-19 20:48:00 +02:00
systems.
## Initialize a new game
Use `cd` to enter a folder where you want to do your game development. Here (and in
2020-06-19 23:25:55 +02:00
the rest of the Evennia documentation) we call this folder `mygame`, but you should of course
name your game whatever you like:
2020-06-19 20:48:00 +02:00
evennia --init mygame
This will create a new folder `mygame` (or whatever you chose) in your current location. This
2020-06-19 23:25:55 +02:00
contains empty templates and all the default settings needed to start the server.
2020-06-19 20:48:00 +02:00
## Start the new game
2020-06-19 23:25:55 +02:00
`cd` into your game folder (`mygame` in our case). Next, run
2020-06-19 20:48:00 +02:00
evennia migrate
This will create the default database (Sqlite3). The database file ends up as `mygame/server/evennia.db3`. If you
ever want to start from a fresh database, just delete this file and re-run `evennia migrate` again.
evennia start
2020-06-19 23:25:55 +02:00
Set your user-name and password when prompted. This will be the "god user" or "superuser" in-game. The email is optional.
2020-06-19 20:48:00 +02:00
If all went well, the server is now up and running. Point a legacy MUD/telnet client to `localhost:4000` or
a web browser at [http://localhost:4001](http://localhost:4001) to play your new (if empty) game!
2020-06-19 22:20:17 +02:00
> If `localhost` doesn't work on your computer, use `127.0.0.1`, which is the same thing.
2020-06-19 20:48:00 +02:00
## See server logs
2020-06-19 23:25:55 +02:00
This will echol the server logs to the terminal as they come in:
2020-06-19 20:48:00 +02:00
evennia --log
or
evennia -l
2020-06-19 23:25:55 +02:00
You can also start logging immediately when running `evennia` commands, such as
2020-06-19 20:48:00 +02:00
evennia start -l
2020-06-19 23:25:55 +02:00
To exit the log view, enter `Ctrl-C` (`Cmd-C` for Mac). This will not affect the server.
2020-06-19 20:48:00 +02:00
## Restarting and stopping
2020-06-19 23:25:55 +02:00
You can restart the server without disconnecting any connected players:
2020-06-19 20:48:00 +02:00
evennia restart
2020-06-19 23:25:55 +02:00
To do a full stop and restart (will disconnect everyone):
2020-06-19 20:48:00 +02:00
evennia reboot
2020-06-19 23:25:55 +02:00
Full stop of the server (will need to use `start` to activate it again):
2020-06-19 20:48:00 +02:00
evennia stop
## The Next step
2020-07-09 00:06:50 +02:00
Why not head into the [Starting Tutorial](../Howto/Starting/Starting-Part1) to learn how to start making your new game!