-
-
Notifications
You must be signed in to change notification settings - Fork 278
Conversation
no callback needed here
establish credentials with the app, check connection with a POST to localhost:5000/connect get table previews from disconnect using a POST to localhost:5000/disconnect ready @chriddyp 😄 |
The latter receives commands from either the app through the IPC or from a remote server through a POST to localhost:5000. Within
|
Object.keys(config).forEach( key => { | ||
setup[key] = config[key]; | ||
}); | ||
return setup; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this just be written as:
const setup = R.merge(options, config);
?
@@ -43,7 +56,17 @@ app.on('ready', () => { | |||
mainWindow.focus(); | |||
ipcMain.removeAllListeners(channel); | |||
ipcMain.on(channel, ipcMessageHandler(sequelizeManager)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍
looks great! this is coming out super clean 🛁 :) just a couple things around:
💃 when those things are updated, or feel free to ping me for another review. |
renamed to `description`
No description provided.