all repos — archive/homestead @ 2fef943bf1c52e8d2be64521202936ca0f7358e3

My future indieweb platform

feat: use configly/TOML for configuration

Alan Pearce
commit

2fef943bf1c52e8d2be64521202936ca0f7358e3

parent

e13c5726846a89df4196f6abc9fc98d99d48305b

1 file changed, 3 insertions(+), 1 deletion(-)

changed files
M test/index.test.jstest/index.test.js
@@ -2,7 +2,9 @@ const test = require('ava')
const path = require('path') const request = require('supertest') -process.env.POST_DIR = path.resolve(__dirname, '../test/data/') +const config = require('../src/modules/config.js') +config.posts.folder = path.resolve(__dirname, './data/') + const app = require('../src/index.js') test('homepage', t => {