gitextract__mhr_92n/ ├── .gitignore ├── README.md ├── docker/ │ ├── Caddyfile │ ├── Dockerfile │ ├── README.md │ └── run.sh ├── env.js ├── package.json ├── src/ │ ├── app.js │ ├── assets/ │ │ └── css/ │ │ └── styles.css │ ├── factories/ │ │ ├── avro4s-factory.js │ │ ├── env-factory.js │ │ ├── index.js │ │ ├── schema-registry-factory.js │ │ ├── toast-factory.js │ │ └── utils-factory.js │ ├── index.html │ └── schema-registry/ │ ├── config/ │ │ ├── config.controller.js │ │ └── config.html │ ├── export/ │ │ ├── export.controller.js │ │ └── export.html │ ├── home/ │ │ ├── home.controller.js │ │ └── home.html │ ├── index.js │ ├── list/ │ │ ├── list.controller.js │ │ └── list.html │ ├── new/ │ │ ├── new.controller.js │ │ └── new.html │ ├── pagination/ │ │ └── dirPaginationControlsTemplate.html │ └── view/ │ ├── view.controller.js │ └── view.html └── webpack.config.js