Following the earlier AdminShell+CollectionCRUD rewrite (PR #14) which already deleted backend/, backend-go/, cloudformation/, helm-charts/, nginx/, sink/, wasm/, upgrade-impact/, e2e/, migration/, package.json and switched the frontend to a 184K Hanzo-first build, complete the cleanup by deleting the remaining Infisical-era residue: - docs/ (1.0G Infisical mintlify docs) - .env.example, .env.dev.example, .env.migration.example, .env.test.example (legacy Postgres/Redis envs; no Go code references them) - .eslintignore, .husky/ (TS toolchain leftovers) - CODE_OF_CONDUCT.md, CONTRIBUTING.md, SECURITY.md (Infisical repo boilerplate) Working tree drops from ~1.0G to <600K of content (1.5G total is .git/ which `git gc --aggressive --prune=now` shrinks locally; the remote keeps its history shape — anyone pulling gets the lean checkout). Build + test verification: go build ./... (4 cmd binaries: green) go test ./... -count=1 -short (all packages: ok) Kept: cmd/, pkg/, sdk/, frontend/ (AdminShell), schema/, examples/, root Go (audit.go, auth.go, consensus.go, embed.go, jwks.go, mount.go, versioning.go + tests), Dockerfile, Dockerfile.kms-fetch, Makefile, LLM.md, CLAUDE.md, DEPRECATED.md, SOVEREIGN-KMS-ARCHITECTURE.md, TFHE-KMS-ARCHITECTURE.md, LICENSE, README.md, VERSION, .github/ (8 Hanzo workflows: build, build-kms-fetch, check-fe-ts-and-lint, ci, pr-preview, release, validate-pr-title, workflow-sanity).
88 lines
923 B
Plaintext
88 lines
923 B
Plaintext
# backend
|
|
node_modules
|
|
.env
|
|
.env.test
|
|
.env.dev
|
|
.env.gamma
|
|
.env.prod
|
|
.env.kms
|
|
.env.migration
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
|
|
.DS_Store
|
|
|
|
/dist
|
|
/completions/
|
|
/manpages/
|
|
|
|
# frontend
|
|
|
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
.env
|
|
|
|
# testing
|
|
coverage
|
|
reports
|
|
junit.xml
|
|
|
|
# next.js
|
|
.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# local env files
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.vercel
|
|
.env.kms
|
|
|
|
# KMS init
|
|
.kms.json
|
|
.kms.json
|
|
|
|
.kmsignore
|
|
|
|
# Editor specific
|
|
.vscode/*
|
|
.idea/*
|
|
|
|
frontend-build
|
|
|
|
*.tgz
|
|
cli/kms-merge
|
|
cli/test/kms-merge
|
|
/backend/binary
|
|
backend/bdd/.bdd-kms-bootstrap-result.json
|
|
|
|
/npm/bin
|
|
__pycache__
|
|
|
|
# AI assistant symlinks (LLM.md is committed, these symlink to it)
|
|
CLAUDE.md
|
|
QWEN.md
|
|
GEMINI.md
|
|
.AGENTS.md
|
|
/kmsd
|
|
/kms-cli
|
|
/mpc-node/mpc-node
|