From fac54389550aaab8bcb4ad1e6b0b1900fd8887d2 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 8 May 2022 13:54:21 +0200 Subject: Add rudimentary gemlog archive support --- config/config.js | 1 + 1 file changed, 1 insertion(+) (limited to 'config') diff --git a/config/config.js b/config/config.js index d16ff2d..476bcfa 100644 --- a/config/config.js +++ b/config/config.js @@ -26,6 +26,7 @@ const internals = {}; module.exports = internals.Config = { maxPosts: Getenv.int('BLOG_MAX_POSTS', 3), postsDirectory: Getenv('BLOG_POSTS_DIRECTORY', Path.resolve(Path.join(__dirname, '../.posts'))), + archiveDirectory: Getenv('BLOG_ARCHIVE_DIRECTORY', Path.resolve(Path.join(__dirname, '../.archive'))), staticDirectory: Getenv('BLOG_STATIC_DIRECTORY', Path.resolve(Path.join(__dirname, '../static'))), templatesDirectory: Getenv('BLOG_TEMPLATES_DIRECTORY', Path.resolve(Path.join(__dirname, '../templates'))) }; -- cgit