Skip to content
Merged
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
1 change: 0 additions & 1 deletion electron-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ When running in development mode (unpackaged), the application creates temporary
**Note**: These files and directories are created in the `electron-app/` directory root during development. In production (packaged) mode:

- **Configuration and Logs**: Stored in `{UserConfigDir}/hyperloop-control-station/` (using Go's `os.UserConfigDir()`)

- Config files and backups: `{UserConfigDir}/hyperloop-control-station/configs/`
- Trace/log files: `{UserConfigDir}/hyperloop-control-station/trace-*.json`

Expand Down
2 changes: 2 additions & 0 deletions electron-app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ const { autoUpdater } = pkg;
// Setup IPC handlers for renderer process communication
setupIpcHandlers();

app.setName("hyperloop-control-station");

// App lifecycle: wait for Electron to be ready
app.whenReady().then(async () => {
// Initialize ConfigManager and ensure config exists BEFORE starting backend
Expand Down
Loading