chore: 更新 .gitignore 文件以排除 pm2 日志目录

更新 .gitignore,新增对 pm2 日志目录的忽略规则,以优化项目文件管理。
This commit is contained in:
2026-05-29 14:52:48 +08:00
parent 55bd56116d
commit 2bc1d4748a
3 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View File

@@ -24,6 +24,9 @@
.DS_Store .DS_Store
*.pem *.pem
# pm2
/logs
# debug # debug
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*

View File

@@ -3,7 +3,7 @@
"backgroundAlt": "页头背景" "backgroundAlt": "页头背景"
}, },
"loading": { "loading": {
"title": "正在进入彩票大厅", "title": "正在进入彩票大厅(前端测试标记)",
"progress": "进度" "progress": "进度"
}, },
"steps": { "steps": {
@@ -29,7 +29,7 @@
"retryProgress": "正在重试({{current}}/{{total}})…" "retryProgress": "正在重试({{current}}/{{total}})…"
}, },
"failure": { "failure": {
"title": "授权失败", "title": "授权失败111",
"subtitle": "无法完成授权,请重试。", "subtitle": "无法完成授权,请重试。",
"detailsTitle": "失败详情", "detailsTitle": "失败详情",
"table": { "table": {

View File

@@ -2,9 +2,7 @@ const DEFAULT_LOTTERY_API_ORIGIN = "http://127.0.0.1:8000";
/** Laravel 根地址(无尾部 `/`),仅供 Next 本地开发代理与 middleware 服务端请求。 */ /** Laravel 根地址(无尾部 `/`),仅供 Next 本地开发代理与 middleware 服务端请求。 */
export function lotteryApiOrigin(): string { export function lotteryApiOrigin(): string {
const configured = const configured = process.env.LOTTERY_API_UPSTREAM?.trim();
process.env.LOTTERY_API_UPSTREAM?.trim() ||
process.env.NEXT_PUBLIC_LOTTERY_API_BASE_URL?.trim();
return (configured || DEFAULT_LOTTERY_API_ORIGIN).replace(/\/$/, ""); return (configured || DEFAULT_LOTTERY_API_ORIGIN).replace(/\/$/, "");
} }