Simple icebreaker app from Made Tech icebreaker cards.
- Python 3, with packages pip and venv
- Git
- Clone the repo: Open a terminal or command prompt in the folder you want the code, then run
git clone https://github.com/JazJax/MadeTech-Icebreakers.git
- Navigate into the folder: usually by running
cd MadeTech-Icebreakers
- Create a python virtual environment using the venv utility:
python3 -m venv .venv
- Activate the virtual environment:
source .venv/bin/activate
- Restore packages:
pip install -r requirements.txt
- Ensure your virtual environment is activated (see above)
- In the terminal run
export FLASK_APP=webserver
to tell your terminal where your server is - To run in development mode (only in development mode!) run
export FLASK_ENV=development
- Run using flask run