Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ A fully customizable testing environment for experimenting with any architecture
## 🚀 Getting Started

1. Clone the repository.
2. Open `index.html` in your modern web browser.
2. Run `npm install`
2. Type `electron .` in your terminal.
3. Start building your cloud empire!


Expand Down
17 changes: 17 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const { app, BrowserWindow } = require('electron');
const path = require('path');

function createWindow() {
const win = new BrowserWindow({
width: 1200,
height: 800,
webPreferences: {
nodeIntegration: false,
contextIsolation: true
}
});

win.loadFile(path.join(__dirname, 'index.html'));
}

app.whenReady().then(createWindow);
Loading