c9cf644ac5
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像 - 更新 .dockerignore 排除 pnpm-workspace.yaml - 更新项目依赖和配置文件
26 lines
297 B
Plaintext
Executable File
26 lines
297 B
Plaintext
Executable File
# 依赖目录
|
|
node_modules/
|
|
pnpm-workspace.yaml
|
|
|
|
# 编译产出目录
|
|
.output/
|
|
.nuxt/
|
|
|
|
# 环境变量文件(通常不应该被打包进去)
|
|
.env
|
|
.env.*
|
|
|
|
# Git 相关
|
|
.git/
|
|
.gitignore
|
|
|
|
# 系统相关
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 日志
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|