23 lines
279 B
Plaintext
23 lines
279 B
Plaintext
# 前端构建产物(Vite outDir 指向根目录 dist,由 Go 提供静态服务)
|
||
/dist/
|
||
|
||
# Go 编译产物
|
||
/rill
|
||
*.exe
|
||
*.test
|
||
*.out
|
||
/vendor/
|
||
|
||
# 数据库文件(SQLite)
|
||
/data/
|
||
|
||
# 服务运行产生的 unix socket
|
||
*.sock
|
||
|
||
# 系统文件
|
||
.DS_Store
|
||
._*
|
||
|
||
# 编辑器
|
||
.idea/
|