diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-08 13:54:21 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-08 13:54:21 +0200 |
| commit | fac54389550aaab8bcb4ad1e6b0b1900fd8887d2 (patch) | |
| tree | a1a85902a90a0c542438bb22e5844d9b92069a4a /config | |
| parent | 1ac49bad28800a79b25c1e22112e71018901d3ba (diff) | |
Add rudimentary gemlog archive support
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.js | 1 |
1 files changed, 1 insertions, 0 deletions
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'))) }; |