Skip to content

Commit

Permalink
Add support for localConfig at $appData/config.json.
Browse files Browse the repository at this point in the history
Move electron-config to $appData/electron-config.json

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
  • Loading branch information
t3chguy committed Feb 28, 2019
1 parent 0d5e80c commit 0e0c1cf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion electron_app/src/electron-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,15 @@ try {
// Continue with the defaults (ie. an empty config)
}

const store = new Store();
try {
// Load local config and use it to override values from the one baked with the build
const localConfig = require(path.join(app.getPath('userData'), 'config.json'));
vectorConfig = Object.assign(vectorConfig, localConfig);
} catch (e) {
// Could not load local config, this is expected in most cases.
}

const store = new Store({ name: "electron-config" });

let mainWindow = null;
global.appQuitting = false;
Expand Down

0 comments on commit 0e0c1cf

Please sign in to comment.