mirror of
https://github.com/Luzifer/gallery.git
synced 2024-11-08 14:10:01 +00:00
Pure HTML/Javascript gallery viewer with an uploader written in Go
frontend | ||
vendor | ||
.eslintrc.json | ||
.gitignore | ||
.repo-runner.yaml | ||
album.go | ||
bindata.go | ||
Gopkg.lock | ||
Gopkg.toml | ||
History.md | ||
image.go | ||
LICENSE | ||
main.go | ||
Makefile | ||
README.md | ||
storage.go | ||
storage_file.go | ||
storage_log.go | ||
storage_s3.go |
Luzifer / gallery
gallery
is a pure HTML/Javascript gallery viewer with an uploader written in Go. It is intended to run inside S3/CloudFront or other static web hosting scenarios: The uploader resizes the original image to fit given image constraints and also creates a thumbnail image. Afterwards an albums.json
file is written and uploaded with the frontend files and the images.
Setup
- Create a S3 bucket
- Grant global read permission using a bucket policy
- Put the images for your album into a folder
- Upload them:
$ gallery --storage s3://io-luzifer-photos --update-frontend --album-id=2012020601 --album-title 'Frozen river' ./frozen-river 28 / 28 [==============================] 100.00% 36s
Storage engines
- S3 (
s3://bucket-name
)
Upload everything into the root of the bucket - File (
file://path
)
Upload everything into the given folder (file:///tmp/gallery
would "upload" to/tmp/gallery/...
)