mirror of
https://github.com/nasa/openmct.git
synced 2025-02-14 22:52:26 +00:00
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"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|