Major changes: - New frontend (platform/web/): Vite + React 18 + TypeScript + Tailwind - 4-module navigation: 数据送标 / 模型管理 / 车队管理 / 系统管理 - Data catalog with charts (DMS/ADAS/Lane 3-tab view) - Quality review workflow (标注质检): Good/Fine/Bad scoring with auto-advance - Audit enhancements: batch operations, rejection categories, Feishu notifications - Operation audit log (操作日志) - World model simulation studio (仿真工坊) - Dataset version management with snapshots and diff - ADAS 7-class dataset integration (138K images organized + compressed) - User management with Feishu integration and pagination - CRUD/search/filter on all pages, card layout redesign - PIL-optimized image overlay rendering - Auto-snapshot on build, in_review workflow stage - Removed embedded algorithm code (now in workspace)
32 lines
956 B
JavaScript
32 lines
956 B
JavaScript
'use strict';
|
|
|
|
var os = require('os');
|
|
|
|
// adapted from https://github.com/sindresorhus/os-homedir/blob/11e089f4754db38bb535e5a8416320c4446e8cfd/index.js
|
|
|
|
module.exports = os.homedir || function homedir() {
|
|
var home = process.env.HOME;
|
|
var user = process.env.LOGNAME || process.env.USER || process.env.LNAME || process.env.USERNAME;
|
|
|
|
if (process.platform === 'win32') {
|
|
return process.env.USERPROFILE
|
|
|| (
|
|
process.env.HOMEDRIVE
|
|
&& process.env.HOMEPATH
|
|
&& (process.env.HOMEDRIVE + process.env.HOMEPATH)
|
|
)
|
|
|| home
|
|
|| null;
|
|
}
|
|
|
|
if (process.platform === 'darwin') {
|
|
return home || (user ? '/Users/' + user : null);
|
|
}
|
|
|
|
if (process.platform === 'linux') {
|
|
return home || (process.getuid() === 0 ? '/root' : (user ? '/home/' + user : null)); // eslint-disable-line no-extra-parens
|
|
}
|
|
|
|
return home || null;
|
|
};
|