forked from mindsdb/mindsdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added teams, redshift, snowflake and lightwood in default handlers li…
…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
Showing
2 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} |