A multistage indexer and template generator to create a gallery that is served via an S3 Compatible Host
Go to file
David Todd 4e2517bcff Add Thumbnail generator
This is multithreaded and will almost probably crash your machine if
you give it a large folder to generate thumbnails for at once.

Also generates a file `pathlist.txt` that contains the publically
accessible URLs for all images that were indexed (For feeding into the
layout generator)

baseuri is the public s3 url
s3_path is where you have your images stored (can be any FS)
browse_path is folders inside your s3_path
thumb_path is where to store the generated thumbnails
thumbsize is how big in pixels the thumbnails should be
2019-04-08 23:10:08 -05:00
.editorconfig Initial Commit 2019-04-08 21:27:07 -05:00
.gitignore update gitignore 2019-04-08 23:06:41 -05:00
GenThumb.py Add Thumbnail generator 2019-04-08 23:10:08 -05:00
LICENSE.md Initial Commit 2019-04-08 21:27:07 -05:00
README.md Initial Commit 2019-04-08 21:27:07 -05:00

README.md

Simple S3 Gallery

This is a very simple web gallery that depends on all your files being hosted away from this server (can be static!). Basically it expects your storage be mounted and readable by your current user.

After scanning through your storage, it will generate thumbnails locally and a list of all the public URLs. This list is fed into the layout generator to create the gallery site.

Upcoming: Systemd timer to scan this daily