/FindTheNextPage

Simple game where clues lead you from page to page.

Primary LanguagePythonGNU Lesser General Public License v3.0LGPL-3.0

FindTheNextPage

Simple game where clues lead you from page to page.

Welcome page Page 1 Page 2

Running the game

The game is built using flask.

user@computer ~/server $ python run.py

Adding your own clues and pages

All clues and pages are stored in a Dictionary in the views.py file in the App directory.

#Dictionary for storing pages and clues

pages ={'1': '1', \
        '2': '10', \
        '11': 'IV',\
        'V': 'evif',\
        'xis': 'Nice!'}

You can add as many pages as you would like, as long as the page names / URLs are unique.