Skip to content
Commits on Source (2)
## [2.0.1](https://gitlab.coko.foundation/cokoapps/icml/compare/v2.0.0...v2.0.1) (2024-12-13)
### Bug Fixes
* create client from env at startup ([6946cd5](https://gitlab.coko.foundation/cokoapps/icml/commit/6946cd525d3cd715622bc9a2611247f612536115))
# [2.0.0](https://gitlab.coko.foundation/cokoapps/icml/compare/v1.2.2...v2.0.0) (2024-12-09)
......
......@@ -4,4 +4,18 @@ module.exports = {
components,
subscriptionsDb: {},
useGraphQLServer: false,
onStartup: [
{
label: 'Create client runner through environment',
execute: async () => {
const {
createServiceClientFromEnvironment,
/* eslint-disable-next-line global-require */
} = require('@coko/service-auth')
await createServiceClientFromEnvironment()
},
},
],
}