From 43943e6ca4529a71c953f764a7640b0f4c2a32e0 Mon Sep 17 00:00:00 2001 From: cytopia Date: Mon, 31 Oct 2016 14:55:15 +0100 Subject: [PATCH] Feature/repo organization (#19) * Adding project templates * Making it more clean what to specify for issues --- .github/ISSUE_TEMPLATE.md | 13 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 5 +++++ 2 files changed, 18 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..1bab7c31 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,13 @@ +If you encounter a bug and something does not work, make sure you have done the following and check those boxes before submitting an issue - thank you! + +- [ ] Pull latest dockers (e.g.: `docker pull cytopia/`) before running `docker-compose up` +- [ ] Specify used docker versions (php, web and database) +- [ ] Attach logs for php, mysql and webserver (found in `log/` directory) +- [ ] Start with debug mode and attach docker-compose output (`.env` setting `DEBUG_COMPOSE_ENTRYPOINT=1`) +- [ ] Never use different mysql|mariadb versions on the same `HOST_PATH_TO_MYSQL_DATADIR` on existing database files. Different mysql|mariadb versions might upgrade/corrupt existing database files. If you have done that already, start with a different path of `HOST_PATH_TO_MYSQL_DATADIR` (to an empty directory) and try again. + +Please also specify the following info: + +- [ ] Which operating system are you at (Linux, OSX or Windows) +- [ ] `docker version` +- [ ] `docker-compose version` diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..7e91a5f4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +Fixes # . + +Changes proposed in this pull request: + +- ...