mirror of
https://github.com/Start9Labs/start9.com.git
synced 2026-04-01 04:53:42 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
import { bootstrapWorker } from '@vendure/core'
|
|
import { config } from './vendure-config'
|
|
|
|
bootstrapWorker(config)
|
|
.then(worker => worker.startJobQueue())
|
|
.catch(err => {
|
|
console.log(err)
|
|
})
|