Open PaulDebus opened 9 years ago
I try running mill on Fedora 22 but I run into issues. mill output debug gives me:
mill output debug
error: [Error: No config file found!] undefined info: papermill NOT OK
After looking into the code, an idea I have is that line 76 in mill-cli.js should more be like: app.config.file({ file: path.join(__dirname, 'test-config.json') }); (I mean the { } before file and after the path) like in https://github.com/flatiron/cli-config/blob/master/examples/app.js#L10
mill-cli.js
app.config.file({ file: path.join(__dirname, 'test-config.json') });
Anyway I wil gladly try to help you fixing this.
I try running mill on Fedora 22 but I run into issues.
mill output debug
gives me:After looking into the code, an idea I have is that line 76 in
mill-cli.js
should more be like:app.config.file({ file: path.join(__dirname, 'test-config.json') });
(I mean the { } before file and after the path)like in https://github.com/flatiron/cli-config/blob/master/examples/app.js#L10
Anyway I wil gladly try to help you fixing this.