25 lines
429 B
Plaintext
25 lines
429 B
Plaintext
# 忽略 Node.js 依赖目录,Docker 镜像会自己安装
|
||
node_modules
|
||
|
||
# 忽略 npm 的调试日志
|
||
npm-debug.log
|
||
|
||
# 忽略操作系统生成的文件
|
||
.DS_Store
|
||
Thumbs.db
|
||
|
||
# 忽略开发工具和 IDE 的配置文件
|
||
.vscode
|
||
.idea
|
||
|
||
# 忽略本地开发脚本
|
||
start.bat
|
||
|
||
# 忽略其他不必要的文件
|
||
新建文本文档.txt
|
||
|
||
# Docker 相关文件自身不需要被包含进镜像
|
||
Dockerfile
|
||
.dockerignore
|
||
docker-compose.yml
|