diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-11-07 02:02:45 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-11-07 02:02:45 +0300 |
commit | e3a41da5a0a3d70ac53591f2b66144f2be2b3871 (patch) | |
tree | 789cc69b05f2447c11f04dbb6ae972ffa0acd1c9 /README.md | |
download | revela-e3a41da5a0a3d70ac53591f2b66144f2be2b3871.tar.gz revela-e3a41da5a0a3d70ac53591f2b66144f2be2b3871.zip |
Initial commit.
Almost functional but still missing features and lacking testing.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..c5cb8d1 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# revela + +A static web image gallery generator. It optimizes images for the web and +generates HTML files to create a photo/image gallery web site ready to be served +by an HTML server. + +VERY EARLY STAGES! It's semifunctional but not very useful yet. + +## Building + +``` +git submodule update --init +make +``` + +or for debugging: + +``` +DEBUG=1 make +``` + +## TODO: + +* Copy CSS and static files +* Fix template generation on outdated html files. Right now if, for example, a + new image was added, the templates for the next and prev images, and the album + are not updated accordingly. +* Add exif tags to template hashmap. +* Clean out-of-date dirs and files (i.e. removed albums/images from the source + dir). +* Improve unja or find better alternative. +* Better test coverage? (if I am not too lazy) +* Document. |