Merge branch 'feature/IO-3255-simplified-part-management' into feature/IO-2776-cdk-fortellis

This commit is contained in:
Dave
2025-08-21 11:45:58 -04:00
42 changed files with 86 additions and 201 deletions

View File

@@ -1,9 +1,4 @@
// Load environment variables THIS MUST BE AT THE TOP
const path = require("path");
require("dotenv").config({
path: path.resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
});
const { networkInterfaces, hostname } = require("node:os");
const getHostNameOrIP = () => {

View File

@@ -1,8 +1,5 @@
// Load environment variables THIS MUST BE AT THE TOP
const path = require("path");
require("dotenv").config({
path: path.resolve(process.cwd(), `.env.${process.env.NODE_ENV || "development"}`)
});
const InstanceManager = require("../utils/instanceMgr").default;
const winston = require("winston");