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

新增:
- 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,7 @@
'use strict';
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.dot-all');
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.sticky');
module.exports = RegExp;

8
frontend/node_modules/core-js/es/regexp/dot-all.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.dot-all');
require('../../modules/es.regexp.exec');
module.exports = function (it) {
return it.dotAll;
};

5
frontend/node_modules/core-js/es/regexp/escape.js generated vendored Normal file
View File

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

5
frontend/node_modules/core-js/es/regexp/flags.js generated vendored Normal file
View File

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

13
frontend/node_modules/core-js/es/regexp/index.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.escape');
require('../../modules/es.regexp.to-string');
require('../../modules/es.regexp.dot-all');
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.flags');
require('../../modules/es.regexp.sticky');
require('../../modules/es.regexp.test');
require('../../modules/es.string.match');
require('../../modules/es.string.replace');
require('../../modules/es.string.search');
require('../../modules/es.string.split');

11
frontend/node_modules/core-js/es/regexp/match.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
require('../../modules/es.regexp.exec');
require('../../modules/es.string.match');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var MATCH = wellKnownSymbol('match');
module.exports = function (it, str) {
return call(RegExp.prototype[MATCH], it, str);
};

11
frontend/node_modules/core-js/es/regexp/replace.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
require('../../modules/es.regexp.exec');
require('../../modules/es.string.replace');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var REPLACE = wellKnownSymbol('replace');
module.exports = function (it, str, replacer) {
return call(RegExp.prototype[REPLACE], it, str, replacer);
};

11
frontend/node_modules/core-js/es/regexp/search.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
require('../../modules/es.regexp.exec');
require('../../modules/es.string.search');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var SEARCH = wellKnownSymbol('search');
module.exports = function (it, str) {
return call(RegExp.prototype[SEARCH], it, str);
};

11
frontend/node_modules/core-js/es/regexp/split.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
require('../../modules/es.regexp.exec');
require('../../modules/es.string.split');
var call = require('../../internals/function-call');
var wellKnownSymbol = require('../../internals/well-known-symbol');
var SPLIT = wellKnownSymbol('split');
module.exports = function (it, str, limit) {
return call(RegExp.prototype[SPLIT], it, str, limit);
};

8
frontend/node_modules/core-js/es/regexp/sticky.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
require('../../modules/es.regexp.constructor');
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.sticky');
module.exports = function (it) {
return it.sticky;
};

6
frontend/node_modules/core-js/es/regexp/test.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
require('../../modules/es.regexp.exec');
require('../../modules/es.regexp.test');
var uncurryThis = require('../../internals/function-uncurry-this');
module.exports = uncurryThis(/./.test);

5
frontend/node_modules/core-js/es/regexp/to-string.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.regexp.to-string');
var uncurryThis = require('../../internals/function-uncurry-this');
module.exports = uncurryThis(/./.toString);