From d824538eeb8bcd6c1d001bcbfd65f709a86f9a5a Mon Sep 17 00:00:00 2001 From: Esteban Abaroa Date: Fri, 2 Feb 2024 15:16:29 +0000 Subject: [PATCH] refactor: sync electron settings from other apps --- electron/start-ipfs.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/electron/start-ipfs.js b/electron/start-ipfs.js index 97864f35..63e7f79d 100644 --- a/electron/start-ipfs.js +++ b/electron/start-ipfs.js @@ -54,8 +54,13 @@ const startIpfs = async () => { await spawnAsync(ipfsPath, ['init'], { env, hideWindows: true }); } catch (e) {} + // make sure repo is migrated + try { + await spawnAsync(ipfsPath, ['repo', 'migrate'], { env, hideWindows: true }); + } catch (e) {} + // dont use 8080 port because it's too common - await spawnAsync(ipfsPath, ['config', '--json', 'Addresses.Gateway', 'null'], { + await spawnAsync(ipfsPath, ['config', '--json', 'Addresses.Gateway', '"/ip4/127.0.0.1/tcp/6473"'], { env, hideWindows: true, });