mirror of
https://github.com/luxfi/corona.git
synced 2026-07-27 02:50:34 +00:00
5 oracle tools were writing KATs to hardcoded /Users/z/work/luxcpp/... paths. All now go through the luxcppDir() helper (LUXCPP_DIR env override, $HOME/work/luxcpp default), consistent with the lux/CLAUDE.md convention. Also .gitignore stray oracle binaries from `go build ./cmd/<oracle>`.
69 lines
718 B
Plaintext
69 lines
718 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Binary directory
|
|
bin/
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
coverage.html
|
|
*.prof
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE directories
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Build artifacts
|
|
dist/
|
|
|
|
# Docker volumes
|
|
.docker/
|
|
|
|
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
GEMINI.md
|
|
GROK.md
|
|
QWEN.md
|
|
|
|
# Stray oracle dev-tool binaries (built ad-hoc)
|
|
/m4_*_oracle
|
|
/cross_runtime_oracle
|
|
/cross_runtime_verify
|
|
/dkg_oracle
|
|
/dkg2_oracle
|
|
/activation_oracle
|
|
/corona_oracle_v2
|
|
/shamir_general_oracle
|