A simple photo gallery webapp
Find a file
2021-06-01 20:31:14 +02:00
src Add a --passfile option to allow specifying the password in a file 2021-01-24 15:17:14 +01:00
.gitignore opam file 2020-10-24 11:42:30 +02:00
dune-project opam file 2020-10-24 11:42:30 +02:00
gal.opam .opam: Fix the version constraint for brr 2020-10-30 16:14:43 +01:00
README.md update README.md 2020-10-25 17:50:43 +01:00
TODO ideas for TODOs 2021-06-01 20:31:14 +02:00

gal

A simple photo-gallery creation webapp.

Allows one to upload some photos and comments, and generates a static webpage for the corresponding photo gallery.

Demo video

Installation

opam pin add https://github.com/Armael/gal.git

Usage

$ gal --help
NAME
       gal - A simple gallery creation webapp

SYNOPSIS
       gal [OPTION]... CONTENT_DIR

ARGUMENTS
       CONTENT_DIR (required)
           Directory where to store (and serve from) the generated content.

OPTIONS
       --debug
           Enable debugging.

       --no-serve-static
           Do not serve static content. If this option is enabled, you need a
           separate web server to serve the static content in CONTENT_DIR.

       -p PORT, --port=PORT (absent=3000)
           Port where to listen to.

       --password=PASSWORD
           Authentication password. The username is "admin". If this option is
           not provided, then there is no authentication.

       --prefix=PREFIX
           Uri prefix where the webapp is served. Default is "". A non-empty
           prefix must start with a /.