├── .gitignore ├── .npmignore ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── bin └── simple-breakpad-server ├── package.json ├── src ├── app.coffee ├── config.coffee └── model │ ├── cache.coffee │ ├── crashreport.coffee │ ├── db.coffee │ └── symfile.coffee └── views ├── crashreport-index.handlebars ├── crashreport-view.handlebars ├── layouts └── main.handlebars ├── pagination.handlebars ├── symfile-index.handlebars └── symfile-view.handlebars /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/README.md -------------------------------------------------------------------------------- /bin/simple-breakpad-server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require(__dirname + '/../lib/app.js') 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/package.json -------------------------------------------------------------------------------- /src/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/src/app.coffee -------------------------------------------------------------------------------- /src/config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/src/config.coffee -------------------------------------------------------------------------------- /src/model/cache.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/src/model/cache.coffee -------------------------------------------------------------------------------- /src/model/crashreport.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/src/model/crashreport.coffee -------------------------------------------------------------------------------- /src/model/db.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/src/model/db.coffee -------------------------------------------------------------------------------- /src/model/symfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/src/model/symfile.coffee -------------------------------------------------------------------------------- /views/crashreport-index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/views/crashreport-index.handlebars -------------------------------------------------------------------------------- /views/crashreport-view.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/views/crashreport-view.handlebars -------------------------------------------------------------------------------- /views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/views/layouts/main.handlebars -------------------------------------------------------------------------------- /views/pagination.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/views/pagination.handlebars -------------------------------------------------------------------------------- /views/symfile-index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/views/symfile-index.handlebars -------------------------------------------------------------------------------- /views/symfile-view.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acrisci/simple-breakpad-server/HEAD/views/symfile-view.handlebars --------------------------------------------------------------------------------