mup-chromadb
v0.0.3
Published
Plugin for Meteor Up to add support for chromadb
Downloads
374
Readme
mup-chromadb
Plugin for Meteor Up to setup and run Chromadb.
Use
Install with npm i -g mup-chromadb
.
Then, add to the plugins
array in your mup config, and add a chromadb
object.
module.exports = {
// rest of config
plugins: ['mup-chromadb'],
chromadb: {
// Server to run chromadb on.
servers: { one: {} },
// Version of chromadb.
version: 'latest',
host: '127.0.0.1',
port: '8000'
}
}
Next, run
mup setup
mup reconfig
Commands
mup chromadb setup
mup chromadb start
mup chromadb stop
mup chromadb logs
View chromadb logs. Supports the same arguments asmup logs
, including--tail
and--follow
.