Files
mengyaconnect/.gitignore
2026-05-16 19:19:39 +08:00

40 lines
637 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Node / Frontend
node_modules/
mengyaconnect-frontend/dist/
.vite/
# Backend Linux binary本地/CI 构建后放入 dist不提交
mengyaconnect-backend/dist/*
!mengyaconnect-backend/dist/.gitkeep
# SQLite 数据库文件(运行时生成,不提交)
mengyaconnect-backend/data/*.db
mengyaconnect-backend/data/*.db-wal
mengyaconnect-backend/data/*.db-shm
# Logs
debug-logs/
*.log
# Environment files
.env
.env.local
.env.*.local
# Go build artifacts
*.exe
*.dll
*.so
*.dylib
*.test
*.out
# Local SSH profiles (often contain secrets)
mengyaconnect-backend/data/ssh/*.json
# IDE / OS
.idea/
.vscode/
.DS_Store
Thumbs.db