mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-28 12:43:35 +03:00
32 lines
746 B
JavaScript
32 lines
746 B
JavaScript
import fs from 'node:fs'
|
|
|
|
import { LEON_FILE_PATH } from '@/constants'
|
|
import { Telemetry } from '@/telemetry'
|
|
import { LogHelper } from '@/helpers/log-helper'
|
|
|
|
export default async () => {
|
|
try {
|
|
const { instanceID, birthDate } = await Telemetry.postInstall()
|
|
|
|
if (!fs.existsSync(LEON_FILE_PATH)) {
|
|
await fs.promises.writeFile(
|
|
LEON_FILE_PATH,
|
|
JSON.stringify(
|
|
{
|
|
instanceID,
|
|
birthDate
|
|
},
|
|
null,
|
|
2
|
|
)
|
|
)
|
|
|
|
LogHelper.success(`Instance ID created: ${instanceID}`)
|
|
} else {
|
|
LogHelper.success(`Instance ID already exists: ${instanceID}`)
|
|
}
|
|
} catch (e) {
|
|
LogHelper.warning(`Failed to create the instance ID: ${e}`)
|
|
}
|
|
}
|