aboutsummaryrefslogtreecommitdiffstats
path: root/app/config/info.ts
blob: da1b390f2195c2ed86cc5bb1bd5828893b14bc0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os from 'os';

const buildInfo = {
    date: new Date(),
    os: {
        hostname: os.hostname(),
        platform: os.platform(),
        release: os.release(),
        type: os.type(),
    },
    panulat: {
        version: process.env.npm_package_version,
    },
};

export default buildInfo;