Move game index client into server/

This commit is contained in:
Griatch 2019-06-24 23:16:53 +02:00
parent 050a665243
commit 0006b8d40f
9 changed files with 83 additions and 44 deletions

View file

@ -682,6 +682,22 @@ DEFAULT_CHANNELS = [
# While the MudInfo channel will also receieve this, this channel is meant for non-staffers.
CHANNEL_CONNECTINFO = None
# The Evennia Game Index is a dynamic listing of Evennia games. You can add your game
# to this list also if it is in closed pre-alpha development.
GAME_INDEX_ENABLED = False
# This dict
GAME_INDEX_LISTING = {
'game_status': 'closed-dev', # closed-dev, pre-alpha, pre-alpha, alpha, beta or launched
'short_description': '',
'long_description': '',
'listing_contact': '', # email
'telnet_hostname': '', # mygame.com
'telnet_port': 1234,
'game_website': '', # http://mygame.com
'web_client_url': '' # http://mygame.com/webclient
}
######################################################################
# External Channel connections
######################################################################