feat: make some more params configurable

This commit is contained in:
pblaesi 2022-08-04 14:57:24 +02:00
parent bd5831f2da
commit 556086cc45
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "jira-graph",
"version": "1.0.0",
"version": "1.1.0",
"scripts": {
"dev": "run-p watch-resources run-dev",
"run-dev": "nodemon src/server.ts",

View File

@ -65,6 +65,8 @@ function getConfiguration() {
{ key: "jiraFilter" },
{ key: "dbType", defaultValue: "local" },
{ key: "dbUrl" },
{ key: "listenPort" },
{ key: "jiraAccessToken" }
];
return toConfiguration(options);
}