We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bba738 commit 2edf667Copy full SHA for 2edf667
services/apps/script_executor_worker/src/main.ts
@@ -1,6 +1,8 @@
1
import { Config } from '@crowd/archetype-standard'
2
import { Options, ServiceWorker } from '@crowd/archetype-worker'
3
4
+import { schedulePopulateActivityRelations } from './schedules/schedulePopulateActivityRelations'
5
+
6
const config: Config = {
7
envvars: ['CROWD_API_SERVICE_URL', 'CROWD_API_SERVICE_USER_TOKEN'],
8
producer: {
@@ -30,5 +32,8 @@ export const svc = new ServiceWorker(config, options)
30
32
31
33
setImmediate(async () => {
34
await svc.init()
35
36
+ await schedulePopulateActivityRelations()
37
38
await svc.start()
39
})
0 commit comments