Files
helix-proxy/.gitignore
T
s1d3sw1ped_bot 22844a2a67
Format / gofmt (push) Successful in 8s
Format / gofmt (pull_request) Successful in 9s
CI / Build (push) Successful in 24s
CI / Build (pull_request) Successful in 25s
CI / Go Tests (pull_request) Successful in 39s
CI / Go Tests (push) Successful in 40s
Persist a per-install JWT signing secret instead of a compiled-in default.
Admin tokens were forgeable whenever JWT_SECRET was unset. Prefer the env var, otherwise write a random key to data/.jwt_secret.
2026-08-31 23:55:34 +00:00

65 lines
625 B
Plaintext

# Binaries
helix-proxy
*.exe
*.exe~
*.dll
*.so
*.dylib
# Explicitly include the cmd/helix-proxy folder
!cmd/helix-proxy
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Dependency directories
vendor/
# Go workspace file
go.work
go.work.sum
# Env files
.env
.env.*
# Build / dist
dist/
ui/dist/
ui/node_modules/
node_modules/
# Data (user runtime, volumes)
data/
logs/
*.sqlite
*.sqlite-shm
*.sqlite-wal
# Keys / secrets
.jwt_secret
keys.json
*.pem
*.key
# IDE / editor
.idea/
.vscode/
.playwright-mcp/
*.swp
*~
# Screenshots
*.png
# OS
.DS_Store
Thumbs.db
# Misc
tmp/
*.log