A simple flask app used for teaching - A basic choose your own adventure game
This repo is a starter flask app for teaching purposes.
This particular variant was made to demonstrate how to use flask to build a Choose Your Own Adventure game.
For a more basic introduction, see Starter Flask App.
git clone <URL>

If you don’t already, install python and pip. If you’re not sure if you have python installed, try running it locally in your command line with python --version.

Navigate to the directory where you cloned this repo.
Run the following command to install the required packages:
pip install -r requirements.txt
Run the following command to start the flask app defined in the app.py file:
flask run

Open your browser and navigate to http://127.0.0.1:5000 to see the app running locally.

Add an item, such as a key, that is required to be found and carried to a particular room to unlock the ending.
Some things you might investigate:
g special objectThink about the pros and cons to the different approaches.