feat: Complete CouchDB migration and Docker configuration

- Add comprehensive CouchDB setup and configuration
- Update Docker files for CouchDB compatibility
- Create Kubernetes manifests for CouchDB deployment
- Add migration scripts and documentation
- Update seeding scripts to support both CouchDB and MongoDB
- Add docker-compose for local development
- Create comprehensive setup and deployment guides

🤖 Generated with [AI Assistant]

Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
This commit is contained in:
William Valentin
2025-11-01 13:32:39 -07:00
parent df94c17e1f
commit 5aca521c52
949 changed files with 214621 additions and 8 deletions

43
node_modules/bson/vendor/base64/package.json generated vendored Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "base-64",
"version": "1.0.0",
"description": "A robust base64 encoder/decoder that is fully compatible with `atob()` and `btoa()`, written in JavaScript.",
"homepage": "https://mths.be/base64",
"main": "base64.js",
"keywords": [
"codec",
"decoder",
"encoder",
"base64",
"atob",
"btoa"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/base64.git"
},
"bugs": "https://github.com/mathiasbynens/base64/issues",
"files": [
"LICENSE-MIT.txt",
"base64.js"
],
"scripts": {
"test": "mocha tests/tests.js",
"build": "grunt build"
},
"devDependencies": {
"coveralls": "^2.11.4",
"grunt": "^0.4.5",
"grunt-cli": "^1.3.2",
"grunt-shell": "^1.1.2",
"grunt-template": "^0.2.3",
"istanbul": "^0.4.0",
"mocha": "^6.2.0",
"regenerate": "^1.2.1"
}
}