A photo gallery webapp.
You need to have Python (2.7) and PIP installed, and if you're on Linux you need to have libjpeg-dev installed in order for the Pillow Python library to be compiled with JPEG support.
Run the following on Ubuntu:
sudo apt-get update && sudo apt-get install python python-pip libjpeg-devClone the repo and then install using pip:
git clone https://github.com/skaggmannen/photogallery.git
cd photogallery
pip install --upgrade -e .Right now you need to manually add the folders you want to scan:
python -m photogallery.parser.add /path/to/folder1 /path/to/folder2After this is done you can start the parser:
python -m photogallery.parser.runWait for it to complete and then start the server:
python -m photogallery.serverNow visit http://localhost:5000/ to view your photogallery.