forked from devspace/devspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (39 loc) · 1.08 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
var app = require('app');
var path = require('path');
var BrowserWindow = require('browser-window');
var Menu = require('menu');
var shell = require('shell');
var mainWindow = null;
var appURL = 'https://app.devspace.io/';
if (process.env.DEBUG) {
appURL = 'http://localhost:8000/';
require('electron-debug')({
showDevTools: true
});
}
app.commandLine.appendSwitch("disable-renderer-backgrounding");
app.on('ready', function() {
var screen = require('screen');
var screenSize = screen.getPrimaryDisplay().workAreaSize;
var mainWindow = new BrowserWindow({
title: 'DevSpace',
width: screenSize.width,
height: screenSize.height,
webPreferences: {
nodeIntegration: false
}
});
mainWindow.on('closed', function() {
mainWindow = null;
});
mainWindow.webContents.on('new-window', function(e, url) {
e.preventDefault();
shell.openExternal(url);
});
mainWindow.loadURL(appURL);
mainWindow.show();
Menu.setApplicationMenu(Menu.buildFromTemplate(require('./menu')));
});
app.on('window-all-closed', function() {
app.quit();
});