2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-03 15:40:14 +00:00
Go to file
2017-06-03 21:25:41 +10:00
.github Github contribution templates 2017-05-29 17:34:19 +10:00
bin Fix #61: new options to avoid copying original photos to the output folder 2017-06-03 21:25:41 +10:00
public Upgrade VideoJS to 5.17 2017-03-11 10:05:27 +11:00
scripts Fix require-lint to ignore video.js (not referenced) 2017-03-19 00:01:50 +11:00
src Fix #61: new options to avoid copying original photos to the output folder 2017-06-03 21:25:41 +10:00
templates Fix video poster aspect ratio: simply use the built-in VideoJS poster 2017-03-16 00:13:01 +11:00
test Fix #61: new options to avoid copying original photos to the output folder 2017-06-03 21:25:41 +10:00
.gitignore Initial commit 2014-04-17 21:26:18 +10:00
.npmignore Prepare for npm publish (ignore tests, cleanup license...) 2016-11-13 13:35:52 +11:00
.travis.yml Fix CI build 2017-02-05 18:38:06 +11:00
banner.jpg Update README.md 2016-11-12 07:35:13 +11:00
LICENSE.md Prepare for npm publish (ignore tests, cleanup license...) 2016-11-13 13:35:52 +11:00
package.json Fix #61: new options to avoid copying original photos to the output folder 2017-06-03 21:25:41 +10:00
README.md Fix #61: new options to avoid copying original photos to the output folder 2017-06-03 21:25:41 +10:00
screenshot.png Border around the README gallery screenshot 2017-02-06 21:53:30 +11:00

thumbsup

NPM License Travis CI Dependencies Dev dependencies Standard - JavaScript Style Guide

banner

Turn any folder with photos & videos into a web gallery.

  • thumbnails & multiple resolutions for fast previews
  • mobile friendly website with customisable themes
  • only rebuilds changed files: it's fast!
  • uses relative paths so you can deploy the pages anywhere
  • works great with Amazon S3 for static hosting

Quick start

Simply point thumbsup to a folder with photos & videos. All nested folders become separate albums.

Requirements

npm install -g thumbsup
thumbsup --input ./media --output ./website

There are many more command line arguments to customise the output. You can also run thumbsup as a Docker container which pre-packages all dependencies like ffmpeg. See the website for the full documentation: https://thumbsup.github.io.

See a sample gallery online at https://thumbsup.github.io/demos/themes/mosaic/

sample gallery

Command line arguments

This reflects the CLI for the latest code on master. For the latest published version please refer to the docs on the website.


Usages:
  thumbsup [required] [options]
  thumbsup --config config.json

Required:
  --input   Path to the folder with all photos/videos  [string] [required]
  --output  Output path for the static website  [string] [required]

Output options:
  --thumb-size            Pixel size of the square thumbnails  [number] [default: 120]
  --large-size            Pixel height of the fullscreen photos  [number] [default: 1000]
  --download-photos       Target of the photo download links  [choices: "large", "copy", "symlink", "link"] [default: "large"]
  --download-videos       Target of the video download links  [choices: "large", "copy", "symlink", "link"] [default: "large"]
  --download-link-prefix  Path or URL prefix for linked downloads  [string]
  --cleanup               Remove any output file that's no longer needed  [boolean] [default: false]

Album options:
  --albums-from            How to group media into albums  [choices: "folders", "date"] [default: "folders"]
  --albums-date-format     How albums are named in <date> mode [moment.js pattern]  [default: "YYYY-MM"]
  --sort-albums-by         How to sort albums  [choices: "title", "start-date", "end-date"] [default: "start-date"]
  --sort-albums-direction  Album sorting direction  [choices: "asc", "desc"] [default: "asc"]
  --sort-media-by          How to sort photos and videos  [choices: "filename", "date"] [default: "date"]
  --sort-media-direction   Media sorting direction  [choices: "asc", "desc"] [default: "asc"]

Website options:
  --index                 Filename of the home page  [default: "index.html"]
  --albums-output-folder  Output subfolder for HTML albums (default: website root)  [default: "."]
  --theme                 Name of the gallery theme to apply  [choices: "classic", "cards", "mosaic"] [default: "classic"]
  --title                 Website title  [default: "Photo album"]
  --footer                Text or HTML footer  [default: null]
  --css                   Path to a custom provided CSS/LESS file for styling  [string]
  --google-analytics      Code for Google Analytics tracking  [string]

Deprecated:
  --original-photos  Copy and allow download of full-size photos  [boolean] [default: false]
  --original-videos  Copy and allow download of full-size videos  [boolean] [default: false]

Options:
  --help    Show help  [boolean]
  --config  Path to JSON config file  [string]

The optional JSON config should contain a single object with one key per argument, not including the leading "--". For example:

{ "sort-albums-by": "start-date" }

Contributing

We welcome all issues and pull requests!

If you are facing any issues or getting crashes, you can run thumbsup in debug mode to get a verbose troubleshooting log of all operations:

DEBUG="*" thumbsup [options]

Please make sure the tests are passing when submitting a code change:

./scripts/cibuild