mirror of https://github.com/Budibase/budibase.git
12 changed files with 861 additions and 26 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@ |
|||
const { app, BrowserWindow } = require('electron'); |
|||
|
|||
require("dotenv").config() |
|||
|
|||
function createWindow() { |
|||
app.server = require("./app")(); |
|||
let win = new BrowserWindow({ width: 1920, height: 1080 }); |
|||
win.loadURL('http://localhost:4001'); |
|||
} |
|||
|
|||
app.whenReady().then(createWindow) |
|||
File diff suppressed because it is too large
Loading…
Reference in new issue