ZekeSnider/Jared

Fallback config.json content is invalid

MPM10223 opened this issue · 2 comments

If you don't have a config.json file, one is created for you with default content from the Bundle (below):

        "routes": {
        },
    "webhooks": [
    ],
    "webserver": {
        "port": 3005
    }
}

However, this default content contains a typo, making it invalid: the webserver entry should instead be webServer with a capital S

The workaround is to manually modify this file after creation, or make sure to seed your application with the contents in config-sample.json in the documentation (which does have the capital S)

Thanks for catching this! I just cut a PR to fix this.