Add description for your own server
This commit is contained in:
parent
182ae4d0e5
commit
9c1d496a9b
2 changed files with 10 additions and 0 deletions
|
@ -65,6 +65,14 @@ The idea is that there are challenges and each challenge offers:
|
||||||
* Create challenges-<YOURNAME>.py and add challenges in there
|
* Create challenges-<YOURNAME>.py and add challenges in there
|
||||||
* Do some magic so all challenges are imported by server
|
* Do some magic so all challenges are imported by server
|
||||||
|
|
||||||
|
### How to run your own game server
|
||||||
|
|
||||||
|
Run
|
||||||
|
```
|
||||||
|
python server.py
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Overview - Security
|
## Overview - Security
|
||||||
|
|
||||||
None at the moment.
|
None at the moment.
|
||||||
|
|
|
@ -123,7 +123,9 @@ class Game(object):
|
||||||
|
|
||||||
def list_of_challenges(self):
|
def list_of_challenges(self):
|
||||||
return """The following challenges are available on this server:
|
return """The following challenges are available on this server:
|
||||||
|
|
||||||
{}
|
{}
|
||||||
|
|
||||||
""".format("\n".join(self.challenge_names))
|
""".format("\n".join(self.challenge_names))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue