mirror of
https://github.com/thumbsup/thumbsup
synced 2024-11-03 15:40:14 +00:00
66 lines
1.7 KiB
JavaScript
Executable File
66 lines
1.7 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
var yargs = require('yargs');
|
|
var path = require('path');
|
|
var index = require('../src/index');
|
|
|
|
var opts = yargs
|
|
.usage('Usage: $0 [options]')
|
|
.options({
|
|
'input': {
|
|
description: 'Path to the folder with all photos/videos',
|
|
},
|
|
'output': {
|
|
description: 'Output path for the static website',
|
|
},
|
|
'title': {
|
|
description: 'Website title',
|
|
default: 'My gallery'
|
|
},
|
|
'thumb-size': {
|
|
description: 'Thumbnail size in pixels (square)',
|
|
default: 120
|
|
},
|
|
'large-size': {
|
|
description: 'Fullscreen size in pixels (height)',
|
|
default: 1000
|
|
},
|
|
'original-photos': {
|
|
description: 'Allow download of full-size photos (true|false)',
|
|
default: false
|
|
},
|
|
'original-videos': {
|
|
description: 'Allow download of full-size videos (true|false)',
|
|
default: false
|
|
},
|
|
'sort-folders': {
|
|
description: 'How to sort gallery folders (name | date)',
|
|
default: 'date'
|
|
},
|
|
'css': {
|
|
description: 'Extra CSS file for styling'
|
|
},
|
|
'config': {
|
|
description: 'Optional JSON config file (one key per argument)'
|
|
},
|
|
'google-analytics': {
|
|
description: 'Code for Google Analytics tracking'
|
|
}
|
|
})
|
|
.config('config')
|
|
.demand(['input', 'output'])
|
|
.argv;
|
|
|
|
index.build({
|
|
input: path.resolve(opts['input']),
|
|
output: path.resolve(opts['output']),
|
|
title: opts['title'],
|
|
thumbSize: opts['thumb-size'],
|
|
largeSize: opts['large-size'],
|
|
originalPhotos: opts['original-photos'] + '' === 'true',
|
|
originalVideos: opts['original-videos'] + '' === 'true',
|
|
sortFolders: opts['sort-folders'],
|
|
css: opts['css'],
|
|
googleAnalytics: opts['google-analytics']
|
|
});
|