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

新增:
- 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

5
frontend/node_modules/core-js/es/reflect/apply.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.apply');
var path = require('../../internals/path');
module.exports = path.Reflect.apply;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.construct');
var path = require('../../internals/path');
module.exports = path.Reflect.construct;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.define-property');
var path = require('../../internals/path');
module.exports = path.Reflect.defineProperty;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.delete-property');
var path = require('../../internals/path');
module.exports = path.Reflect.deleteProperty;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.get-own-property-descriptor');
var path = require('../../internals/path');
module.exports = path.Reflect.getOwnPropertyDescriptor;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.get-prototype-of');
var path = require('../../internals/path');
module.exports = path.Reflect.getPrototypeOf;

5
frontend/node_modules/core-js/es/reflect/get.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.get');
var path = require('../../internals/path');
module.exports = path.Reflect.get;

5
frontend/node_modules/core-js/es/reflect/has.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.has');
var path = require('../../internals/path');
module.exports = path.Reflect.has;

19
frontend/node_modules/core-js/es/reflect/index.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
'use strict';
require('../../modules/es.object.to-string');
require('../../modules/es.reflect.apply');
require('../../modules/es.reflect.construct');
require('../../modules/es.reflect.define-property');
require('../../modules/es.reflect.delete-property');
require('../../modules/es.reflect.get');
require('../../modules/es.reflect.get-own-property-descriptor');
require('../../modules/es.reflect.get-prototype-of');
require('../../modules/es.reflect.has');
require('../../modules/es.reflect.is-extensible');
require('../../modules/es.reflect.own-keys');
require('../../modules/es.reflect.prevent-extensions');
require('../../modules/es.reflect.set');
require('../../modules/es.reflect.set-prototype-of');
require('../../modules/es.reflect.to-string-tag');
var path = require('../../internals/path');
module.exports = path.Reflect;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.is-extensible');
var path = require('../../internals/path');
module.exports = path.Reflect.isExtensible;

5
frontend/node_modules/core-js/es/reflect/own-keys.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.own-keys');
var path = require('../../internals/path');
module.exports = path.Reflect.ownKeys;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.prevent-extensions');
var path = require('../../internals/path');
module.exports = path.Reflect.preventExtensions;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.set-prototype-of');
var path = require('../../internals/path');
module.exports = path.Reflect.setPrototypeOf;

5
frontend/node_modules/core-js/es/reflect/set.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.reflect.set');
var path = require('../../internals/path');
module.exports = path.Reflect.set;

View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.object.to-string');
require('../../modules/es.reflect.to-string-tag');
module.exports = 'Reflect';