├── .dockerhub └── overview.md ├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ ├── publish-docker.yml │ └── publish-npm.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config-create.js ├── mongodb-lens.js ├── mongodb-lens.test.js └── package.json /.dockerhub/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/.dockerhub/overview.md -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/.github/workflows/publish-docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | repomix* 4 | .mongodb-lens*.json* 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/README.md -------------------------------------------------------------------------------- /config-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/config-create.js -------------------------------------------------------------------------------- /mongodb-lens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/mongodb-lens.js -------------------------------------------------------------------------------- /mongodb-lens.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/mongodb-lens.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furey/mongodb-lens/HEAD/package.json --------------------------------------------------------------------------------