📦 添加虚拟环境和启动脚本

新增:
- backend/venv/ - Python 虚拟环境
- backend/start.sh - 启动脚本(使用虚拟环境)
- backend/requirements.txt - 依赖列表
- .gitignore - 忽略虚拟环境和缓存文件

说明:
- 每个项目使用独立虚拟环境
- 避免依赖冲突
- 启动脚本自动创建和激活虚拟环境
This commit is contained in:
2026-04-04 18:28:31 +08:00
parent 9ab279e1fe
commit 96f6318101
32058 changed files with 3949495 additions and 22 deletions

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/assign');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/create');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/define-getter');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/define-properties');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/define-property');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/define-setter');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/entries');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/freeze');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/from-entries');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/get-own-property-descriptor');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/get-own-property-descriptors');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/get-own-property-names');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/get-own-property-symbols');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/get-prototype-of');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/group-by');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/has-own');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/is-extensible');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/is-frozen');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/is-sealed');

2
frontend/node_modules/core-js/features/object/is.js generated vendored Normal file
View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/is');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/iterate-entries');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/iterate-keys');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/iterate-values');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/keys');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/lookup-getter');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/lookup-setter');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/prevent-extensions');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/proto');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/seal');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/set-prototype-of');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/to-string');

View File

@@ -0,0 +1,2 @@
'use strict';
module.exports = require('../../full/object/values');