electron-crash-report-server is a server for collecting crash reports from Electron applications.
During setup you should change the AUTH_USER
and AUTH_PASS
environment
variables. Once your app has been deployed you will use those values to login.
If you are not seeing crash reports after the first deploy you may need to restart the app.
const {crashReporter} = require('electron')
crashReporter.start({
// ...other options
submitURL: 'https://app-name-12345.herokuapp.com/'
})
Refer to the crashReporter
documentation for the full details.
Check out the example electron app and demo server for a
working example. The login and password for the demo are crash
and electron
.
You may need to use the example (or any other) app to add some reports to the demo server.
Please create an issue if you encounter bugs or missing features.