From 74e1f6cead8c8f7971a9fad585a6934d75fb8671 Mon Sep 17 00:00:00 2001 From: Thomas VIAL Date: Sat, 24 Dec 2016 14:52:05 +0100 Subject: [PATCH] Destroyed How to contribute (markdown) --- docs/content/how-to-contribute.md | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 docs/content/how-to-contribute.md diff --git a/docs/content/how-to-contribute.md b/docs/content/how-to-contribute.md deleted file mode 100644 index 9cf60b05..00000000 --- a/docs/content/how-to-contribute.md +++ /dev/null @@ -1,24 +0,0 @@ -`docker-mailserver` is OpenSource. That means that you can contribute on enhancements, bug fixing or improving the documentation in the Wiki. - -#### Project architecture - - ├── config # User: personal configurations - ├── target # Developer: default server configurations - └── test # Developer: integration tests - -#### Development Workflow - -The development workflow is the following: - -- Fork project and clone your fork -- Create a branch using `git checkout -b branch_name` -- Code :-) -- Add integration tests in `test/tests.bats` -- Use `make` to build image locally and run tests -- Document your improvements -- [Commit](https://help.github.com/articles/closing-issues-via-commit-messages/), push and make a pull-request -- Pull-request is automatically tested on Travis -- When tests are green, your branch is merged into `master` -- `master` is automatically tested on Travis -- Docker builds a new `latest` image -