flaskGallery is a web application made with flask, which functions as a user-submitted image gallery.
To run flaskGallery, download the source code into a directory, and create a virtual environment.
python -m venv venv
Activate the virtual environment, and use pip to install the required Python packages.
venv/bin/activate (or venv/Scripts/activate.bat on Windows)
pip install -r requirements.txt
Now you can run a testing environment with the command flask run
.
This is loosely based on the microblog project by Miguel Grinberg, from his Flask Mega-Tutorial.