mirror of
https://github.com/nasa/openmct.git
synced 2025-01-26 06:09:27 +00:00
2ce5ebcf20
Initial import of CouchDB adapter from the pre-Angular OpenMCT. Revise to use Angular services (). WTD-537.
24 lines
686 B
JSON
24 lines
686 B
JSON
{
|
|
"name": "Couch Persistence",
|
|
"description": "Adapter to read and write objects using a CouchDB instance.",
|
|
"extensions": {
|
|
"components": [
|
|
{
|
|
"provides": "persistenceService",
|
|
"type": "provider",
|
|
"implementation": "CouchPersistenceProvider.js",
|
|
"depends": [ "$http", "$q", "PERSISTENCE_SPACE", "COUCHDB_PATH" ]
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "PERSISTENCE_SPACE",
|
|
"value": "mct"
|
|
},
|
|
{
|
|
"key": "COUCHDB_PATH",
|
|
"value": "/couch/openmct"
|
|
}
|
|
]
|
|
}
|
|
} |