初始化

This commit is contained in:
2026-03-09 17:35:53 +08:00
commit 74f322b7c2
577 changed files with 57404 additions and 0 deletions

169
config/terminal.php Normal file
View File

@@ -0,0 +1,169 @@
<?php
// +----------------------------------------------------------------------
// | BuildAdmin - WEB终端配置
// | 1. 我们只推荐在本地开发环境使用WEB终端
// | 2. 命令参数中可以使用 %s %f 等占位符,系统将从 request()->param('extend') 取值,以 ~~ 分割多个参数后使用 sprintf 函数替换进完整的命令字符串
// | 3. 命令主体千万不能使用 %s %f 等占位符,参数使用占位符时,系统将自动使用 escapeshellarg 对参数值进行转义来防止命令注入攻击
// +----------------------------------------------------------------------
return [
// npm包管理器
'npm_package_manager' => 'pnpm',
// 允许执行的命令
'commands' => [
// 数据库迁移命令
'migrate' => [
'run' => [
'cwd' => '',
'command' => 'php think migrate:run',
'notes' => 'Start the database migration'
],
'rollback' => 'php think migrate:rollback',
'breakpoint' => 'php think migrate:breakpoint',
],
// 安装包管理器的命令
'install' => [
'cnpm' => 'npm install cnpm -g --registry=https://registry.npmmirror.com',
'yarn' => 'npm install -g yarn',
'pnpm' => 'npm install -g pnpm',
'ni' => 'npm install -g @antfu/ni',
],
// 查看版本的命令
'version' => [
'npm' => 'npm -v',
'cnpm' => 'cnpm -v',
'yarn' => 'yarn -v',
'pnpm' => 'pnpm -v',
'node' => 'node -v',
],
// 测试命令
'test' => [
'npm' => [
'cwd' => 'public/npm-install-test',
'command' => 'npm install',
],
'cnpm' => [
'cwd' => 'public/npm-install-test',
'command' => 'cnpm install',
],
'yarn' => [
'cwd' => 'public/npm-install-test',
'command' => 'yarn install',
],
'pnpm' => [
'cwd' => 'public/npm-install-test',
'command' => 'pnpm install',
],
'ni' => [
'cwd' => 'public/npm-install-test',
'command' => 'ni install',
],
],
// 安装 WEB 依赖包
'web-install' => [
'npm' => [
'cwd' => 'web',
'command' => 'npm install',
],
'cnpm' => [
'cwd' => 'web',
'command' => 'cnpm install',
],
'yarn' => [
'cwd' => 'web',
'command' => 'yarn install',
],
'pnpm' => [
'cwd' => 'web',
'command' => 'pnpm install',
],
'ni' => [
'cwd' => 'web',
'command' => 'ni install',
],
],
// 安装 Web-Nuxt 依赖包
'nuxt-install' => [
'npm' => [
'cwd' => 'web-nuxt',
'command' => 'npm install',
],
'cnpm' => [
'cwd' => 'web-nuxt',
'command' => 'cnpm install',
],
'yarn' => [
'cwd' => 'web-nuxt',
'command' => 'yarn install',
],
'pnpm' => [
'cwd' => 'web-nuxt',
'command' => 'pnpm install',
],
'ni' => [
'cwd' => 'web-nuxt',
'command' => 'ni install',
],
],
// 构建 WEB 端
'web-build' => [
'npm' => [
'cwd' => 'web',
'command' => 'npm run build',
'notes' => 'Start executing the build command of the web project',
],
'cnpm' => [
'cwd' => 'web',
'command' => 'cnpm run build',
'notes' => 'Start executing the build command of the web project',
],
'yarn' => [
'cwd' => 'web',
'command' => 'yarn run build',
'notes' => 'Start executing the build command of the web project',
],
'pnpm' => [
'cwd' => 'web',
'command' => 'pnpm run build',
'notes' => 'Start executing the build command of the web project',
],
'ni' => [
'cwd' => 'web',
'command' => 'nr build',
'notes' => 'Start executing the build command of the web project',
],
],
// 设置 NPM 源
'set-npm-registry' => [
'npm' => 'npm config set registry https://registry.npmjs.org/ && npm config get registry',
'taobao' => 'npm config set registry https://registry.npmmirror.com/ && npm config get registry',
'tencent' => 'npm config set registry https://mirrors.cloud.tencent.com/npm/ && npm config get registry'
],
// 设置 composer 源
'set-composer-registry' => [
'composer' => 'composer config --unset repos.packagist',
'aliyun' => 'composer config -g repos.packagist composer https://mirrors.aliyun.com/composer/',
'tencent' => 'composer config -g repos.packagist composer https://mirrors.cloud.tencent.com/composer/',
'huawei' => 'composer config -g repos.packagist composer https://mirrors.huaweicloud.com/repository/php/',
'kkame' => 'composer config -g repos.packagist composer https://packagist.kr',
],
'npx' => [
'prettier' => [
'cwd' => 'web',
'command' => 'npx prettier --write %s',
'notes' => 'Start formatting the web project code',
],
],
'composer' => [
'update' => [
'cwd' => '',
'command' => 'composer update --no-interaction',
'notes' => 'Start installing the composer dependencies'
]
],
'ping' => [
'baidu' => 'ping baidu.com',
'localhost' => 'ping 127.0.0.1 -n 6',
]
],
];