mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
30 lines
539 B
JavaScript
30 lines
539 B
JavaScript
|
|
export const defaultOptions = {
|
||
|
|
'postgresql': {
|
||
|
|
host: 'localhost',
|
||
|
|
port: 5432,
|
||
|
|
username: '',
|
||
|
|
password: ''
|
||
|
|
},
|
||
|
|
'mysql': {
|
||
|
|
host: 'localhost',
|
||
|
|
port: 3306,
|
||
|
|
username: '',
|
||
|
|
password: ''
|
||
|
|
},
|
||
|
|
'redis': {
|
||
|
|
host: 'localhost',
|
||
|
|
port: 6379,
|
||
|
|
username: '',
|
||
|
|
password: ''
|
||
|
|
},
|
||
|
|
'elasticsearch': {
|
||
|
|
host: 'localhost',
|
||
|
|
port: 9000,
|
||
|
|
username: '',
|
||
|
|
password: ''
|
||
|
|
},
|
||
|
|
'stripe': {
|
||
|
|
api_key: ''
|
||
|
|
}
|
||
|
|
}
|