Initial commit — Electron + React frontend, Express/Docker backend, members & project management

This commit is contained in:
Ryan Lancaster
2026-03-15 13:40:01 -07:00
commit a3949c32ee
24 changed files with 12583 additions and 0 deletions

15
main.js Normal file
View File

@@ -0,0 +1,15 @@
const { app, BrowserWindow } = require('electron');
const path = require('path');
app.whenReady().then(() => {
const win = new BrowserWindow({
width: 1400,
height: 900,
webPreferences: { nodeIntegration: false },
titleBarStyle: 'hiddenInset', // mac-native title bar
icon: path.join(__dirname, 'icon.png')
});
win.loadFile(path.join(__dirname, 'dist', 'index.html'));
});
app.on('window-all-closed', () => process.platform !== 'darwin' && app.quit());