├── .do └── deploy.template.yaml ├── .gitlab ├── .gitkeep ├── issue_templates │ ├── .gitkeep │ └── default.md └── merge_request_templates │ └── default.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── app-platform.yaml ├── app.json └── heroku.yml /.do/deploy.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/.do/deploy.template.yaml -------------------------------------------------------------------------------- /.gitlab/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitlab/issue_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitlab/issue_templates/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/.gitlab/issue_templates/default.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/.gitlab/merge_request_templates/default.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/README.md -------------------------------------------------------------------------------- /app-platform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/app-platform.yaml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/app.json -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/GlitchTip/HEAD/heroku.yml --------------------------------------------------------------------------------