Update for project move on server, add ability to update existing POs, add spec lookup page, enhance copy down functionality.

This commit is contained in:
2026-05-13 11:28:35 -04:00
parent 38f4db3d15
commit c0f4f1de0d
26 changed files with 1414 additions and 103 deletions
@@ -11,7 +11,7 @@
*
* Environment:
* Reads DB_HOST, DB_USER, DB_PASSWORD, DB_NAME, DB_PORT from
* /var/www/html/inventory/.env (or current process env).
* /var/www/inventory/.env (or current process env).
*/
const { spawn } = require('child_process');
@@ -20,7 +20,7 @@ const fs = require('fs');
// Load .env file if it exists (production path)
const envPaths = [
'/var/www/html/inventory/.env',
'/var/www/inventory/.env',
path.join(__dirname, '../../.env'),
];