Skip to content

Commit

Permalink
Added teams, redshift, snowflake and lightwood in default handlers li…
Browse files Browse the repository at this point in the history
…st. Also added a section in config file to enable auth with mindsdb
  • Loading branch information
Mohammed committed Oct 3, 2024
1 parent f9277a6 commit 32ba8fe
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 24 deletions.
7 changes: 5 additions & 2 deletions default_handlers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mariadb
scylla
cassandra
clickhouse
# snowflake
snowflake
slack
sqlite
mongodb
Expand All @@ -20,4 +20,7 @@ web
langchain # For agents & completions
sema4
pgvector
confluence
confluence
teams
redshift
lightwood
49 changes: 27 additions & 22 deletions docker/mindsdb_config.release.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@
{
"config_version":"1.4",
"storage_dir": "/root/mdb_storage",
"debug": false,
"integrations": {},
"api": {
"http": {
"host": "0.0.0.0",
"port": "47334"
},
"mysql": {
"host": "0.0.0.0",
"password": "",
"port": "47335",
"user": "mindsdb",
"database": "mindsdb",
"ssl": true
},
"mongodb": {
"host": "0.0.0.0",
"port": "47336",
"database": "mindsdb"
}
"config_version": "1.4",
"storage_dir": "/root/mdb_storage",
"debug": false,
"integrations": {},
"auth": {
"http_auth_enabled": true,
"username": "mindsdb",
"password": ""
},
"api": {
"http": {
"host": "0.0.0.0",
"port": "47334"
},
"mysql": {
"host": "0.0.0.0",
"password": "",
"port": "47335",
"user": "mindsdb",
"database": "mindsdb",
"ssl": true
},
"mongodb": {
"host": "0.0.0.0",
"port": "47336",
"database": "mindsdb"
}
}
}

0 comments on commit 32ba8fe

Please sign in to comment.