- 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>
13 lines
359 B
JavaScript
13 lines
359 B
JavaScript
'use strict';
|
|
|
|
const builtinPlugins = require('../../plugins');
|
|
|
|
module.exports = function applyBuiltinPlugins(schema) {
|
|
for (const plugin of Object.values(builtinPlugins)) {
|
|
plugin(schema, { deduplicate: true });
|
|
}
|
|
schema.plugins = Object.values(builtinPlugins).
|
|
map(fn => ({ fn, opts: { deduplicate: true } })).
|
|
concat(schema.plugins);
|
|
};
|