'init'
This commit is contained in:
103
sc-lktx-backend/.gitignore
vendored
Normal file
103
sc-lktx-backend/.gitignore
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
# Go workspace
|
||||
go.work
|
||||
go.work.sum
|
||||
|
||||
# Go build output
|
||||
/bin/
|
||||
/pkg/
|
||||
/build/
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
*.test
|
||||
*.out
|
||||
|
||||
# Go vendor
|
||||
/vendor/
|
||||
|
||||
# IDE - GoLand / IntelliJ IDEA
|
||||
.idea/
|
||||
*.iml
|
||||
*.iws
|
||||
*.ipr
|
||||
out/
|
||||
.idea_modules/
|
||||
atlassian-ide-plugin.xml
|
||||
|
||||
# IDE - VS Code (备用)
|
||||
.vscode/
|
||||
*.code-workspace
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
Icon
|
||||
._*
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
.com.apple.timemachine.donotpresent
|
||||
|
||||
# Windows
|
||||
Thumbs.db
|
||||
Thumbs.db:encryptable
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
*.stackdump
|
||||
[Dd]esktop.ini
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Linux
|
||||
*~
|
||||
.fuse_hidden*
|
||||
.directory
|
||||
.Trash-*
|
||||
|
||||
# Environment & Config
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
!config/config.example.yaml
|
||||
*.toml
|
||||
!config/config.example.toml
|
||||
|
||||
# Logs
|
||||
/logs/
|
||||
*.log
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
|
||||
# MinIO data
|
||||
/minio_data/
|
||||
|
||||
# PostgreSQL data
|
||||
/pgdata/
|
||||
|
||||
# Redis dump
|
||||
dump.rdb
|
||||
|
||||
# Docker
|
||||
docker-compose.override.yml
|
||||
|
||||
# Upload & Temp
|
||||
/uploads/
|
||||
/tmp/
|
||||
/temp/
|
||||
|
||||
# Air live reload
|
||||
.air.toml
|
||||
tmp/
|
||||
|
||||
# Coverage
|
||||
*.coverprofile
|
||||
coverage.html
|
||||
coverage.out
|
||||
|
||||
server
|
||||
Reference in New Issue
Block a user