12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import path from 'node:path'
|
|
import type { ServiceConfig } from 'node-windows'
|
|
|
|
const _dirname = '.'
|
|
|
|
export const serviceConfig: ServiceConfig = {
|
|
name: 'Lot Occupancy Manager',
|
|
description:
|
|
'A system for managing the occupancy of lots. (i.e. Cemetery management)',
|
|
script: path.join(_dirname, 'bin', 'www.js')
|
|
}
|