First release of open core
This commit is contained in:
62
.gitignore
vendored
62
.gitignore
vendored
@@ -1,27 +1,59 @@
|
||||
# ---> Go
|
||||
# If you prefer the allow list template instead of the deny list, see community template:
|
||||
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
||||
#
|
||||
# Binaries for programs and plugins
|
||||
# =========================
|
||||
# Go Standard
|
||||
# =========================
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
||||
# Go workspace file
|
||||
go.work
|
||||
go.work.sum
|
||||
vendor/
|
||||
|
||||
# env file
|
||||
# =========================
|
||||
# RiskRancher Compiled Binaries
|
||||
# =========================
|
||||
# Ignore the local builds so you don't accidentally push a 20MB executable
|
||||
rr
|
||||
rr.exe
|
||||
|
||||
# =========================
|
||||
# Runtime Data & Uploads (CRITICAL)
|
||||
# =========================
|
||||
# Ignore all runtime databases and uploaded pentest reports/images
|
||||
/data/*
|
||||
!/data/.keep
|
||||
/backups/*
|
||||
!/backups/.keep
|
||||
|
||||
# SQLite temporary and journal files
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# =========================
|
||||
# Environment & Secrets
|
||||
# =========================
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# =========================
|
||||
# IDEs & OS Files
|
||||
# =========================
|
||||
# GoLand / IntelliJ
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Windows
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Reference in New Issue
Block a user