This project is mainly developed by a small group of researchers and students from [Jülich Research Center](http://www.fz-juelich.de/en) and [BUW](http://www.uni-wuppertal.de/).
However, you are kindly invited not only to use `JuPedSim` but also contributing to this project.
It does not matter if you are a researcher, student or just interested in pedestrian dynamics.
* Change to the developement branch and create a branch with your feature.
~~~
git checkout developement
git checkout -b feature_name
~~~
* Assuming you are in the `jpscore` folder type
```bash
mkdir build &&cd build
cmake ..
```
* Download all [dependencies](2016-11-03-requirements.html) and check the output of `CMake`
* If everything compiles fine, you are free to start. :-)
### Workflow
The branches **master** and **develop** are **protected**. You can **only push to your feature-branch.**
Whenever you want to add a feature or fix an issue create a new feature-branch and only work on this branch.
Once you finish your fixes/changes merge the branch `develop` in your branch.
Make sure all tests are running before merging and you provided new tests for your feature.
After doing that open a merge request.
If your fix/feature is accepted it will be merged into the develop-branch.
## Reporting bugs and requesting features
If you have a question or a problem and need support from our team feel free to contact us.
You can do this via [email](mailto:dev@jupedsim.org).
If you think you found an issue or bug in `JuPedSim` please use our issue tracker.
### Using the issue tracker
The issue tracker is the preferred channel for bug reports, features requests and submitting pull requests, but please respect the following restrictions:
- Please do not use the issue tracker for personal support requests. [Mail us](mailto:dev@jupedsim.org) if you need personal support.
- Please do not derail or troll issues. Keep the discussion on topic and respect the opinions of others.
If you use the issue tracker we have a list of labels you should use.
### Reporting bugs
If you find a bug in the source code or a mistake in the documentation, you can help us by submitting an issue to our repository.
Even better you can submit a pull or merge request with a fix. Please use the following template and make sure you provide us as much information as possible:
~~~bash
[Short description of problem here]
**Reproduction Steps:**
1. [First Step]
2. [Second Step]
3. [Other Steps...]
**Expected behavior:**
[Describe expected behavior here]
**Observed behavior:**
[Describe observed behavior here]
**Screenshots and GIFs**

**JuPedSim version:**[Enter JuPedSim version here]
**OS and version:**[Enter OS name and version here]
**Compiler and version:**[Enter compiler name and version here]
**Installed Libraries:**
[Enter Boost version here]
[Enter Vtk version here]
[Enter Qt version here]
**Additional information:**
* Problem started happening recently, didn't happen in an older version of JuPedSim: [Yes/No]
* Problem can be reliably reproduced, doesn't happen randomly: [Yes/No]
* Problem happens with all files and projects, not only some files or projects: [Yes/No]
* Problem happens with the attached ini and geometry files: [Yes/No]
~~~
### Requesting features
Enhancement suggestions are tracked as issues. After you've determined which repository your enhancement suggestions is related to, create an issue on that repository and provide the following information:
* Use a clear and descriptive title for the issue to identify the suggestion.
* Provide a step-by-step description of the suggested enhancement in as many details as possible.
* Provide specific examples to demonstrate the steps. Include copy/pasteable snippets which you use in those examples, as Markdown code blocks.
* Describe the current behavior and explain which behavior you expected to see instead and why.
If you want to support us by writing the enhancement yourself consider what kind of change it is:
-**Major changes** that you wish to contribute to the project should be discussed first on our **dev mailing list** so that we can better coordinate our efforts, prevent duplication of work, and help you to craft the change so that it is successfully accepted into the project.
-**Small changes** can be crafted and submitted to our repository as a **pull or merge request**.
Nevertheless open an issue for documentation purposes with the following template:
~~~bash
[Short description of suggestion]
**Steps which explain the enhancement**
1. [First Step]
2. [Second Step]
3. [Other Steps...]
**Current and suggested behavior**
[Describe current and suggested behavior here]
**Why would the enhancement be useful to most users**
[Explain why the enhancement would be useful to most users]
[List some other text editors or applications where this enhancement exists]
**Screenshots and GIFs**

**JuPedSim Version:**[Enter JuPedSim version here]
**OS and Version:**[Enter OS name and version here]~
~~~
## Writing Code
### Coding style
In JuPedSim we try to code according to the *Stroustrup* style of formatting/indenting.
If you want (or have) to write code in JuPedSim you really **need** to respect that style.
This is important not just aesthetically but also practically. Diff commits are much more clearer and cleaner.
The code is formatted using the automatic formatter [astyle](http://astyle.sourceforge.net/astyle.html)