Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 769 Bytes

File metadata and controls

23 lines (19 loc) · 769 Bytes

LCHS_minesweeper

This starter code corresponds to the text and videos in the Build a Minesweeper Game chapter from the LCHS textbook.

Flask Setup

After cloning this repo, users will need to create a virtual environment, activate it, and then install Flask. Use a command line interface to navigate into the project folder, then enter the following commands.

Mac

python3 -m venv game-env
. game-env/bin/activate
pip3 install Flask

Windows (GitBash)

py -3 -m venv game-env
. game-env/Scripts/activate
pip install Flask

Note

This chapter is under development. When deployed, access its table of contents here: https://education.launchcode.org/lchs/chapters/databases-part2/index.html