If you have a question about DemocracyOS (not a bug report) please post it to our mailing list or on Gitter.
For practical reasons we only accept issues that are bug reports or feature requests. Make sure to read the following guidelines before opening new issues.
You'd help us out a lot by first checking if someone else has reported the same issue. Moreover, the issue may have already been resolved with a fix available.
Share as much information as possible. Include operating system and version, browser and version, version of DemocracyOS. Also include steps to reproduce the bug and any logs from browser and/or process whenever possible.
A good approach to a bug report is being very clear on how to reproduce it. Following this template might help (kudos to @bastianhell:
- Run app with
make
- Navigate to
/route
- Click on
button
and see error inconsole
outputResults: What is the actual result that makes it a bug? (e.g: Misaligned text in header, see attached snapshot, etc.)
Expected results: What should it look like? (e.g.: text in header should be aligned with dropdowns, etc.)
To contribute code, start by forking our repo on github. You'll get something like this:
https://github.com/user/app
Then clone your fork:
git clone git@github.com:user/app && cd app/
Add the official repo as a remote, to track changes:
git remote add upstream git@github.com:DemocracyOS/app.git
Create a new branch for the changes you are going to contribute, with a relevant name. Some examples:
git checkout -b feature/some-new-stuff
git checkout -b fix/some-bug
git checkout -b remove/some-file
Hack your changes: (you don't need to actually run this)
vim somefile.txt
git add somefile.txt
git commit -a -m"adding somefile.txt"
When you think your code is ready, prepare for pushing the code by first getting the changes from the main repo:
git pull --rebase upstream development
(You may need to solve any conflicts from the rebase at this point)
After that you can push the changes to your fork, by doing:
git push origin feature/some-new-stuff
git push origin fix/some-bug
Finally go to https://github.com/DemocracyOS/app
in the browser and issue a new pull request. Github normally recognizes you have pending changes in a new branch and will suggest creating the pull request.
Main contributors will review your code and possibly ask for changes before your code is pulled in to the main repository. We appreciate your time and efforts!
- We flag the issues to community participation as help wanted, try to prioritize these.
- Do not make a pull request withouth having run the app on your own. This means, you have to at least smoke test what you did. If you can include some tests with your PR, all the better.
- Try not to pollute your pull request with unintended changes. Keep them simple and small. Unrelated commits will prevent us from merging.
- Pull requests should always be against the
development
branch, never againstmaster
. - All pull requests must comply with the project's coding styles explained here.
In general terms, we agree with almost everything said in this blog post about GIT conventions and so should you. We only add/differ the following:
- Commits should try to be as simple (atomic) as possible, but not simpler. Meaning you should always be able to revert specific
fix
es,edit
s,update
s,add
s, andremove
s withgit revert
- Two spaces for indentation, never tabs.
- Double quotes only, never single quotes.
- Avoid trailing whitespace. Blank lines should not have any space.
- Use CDNs and HTTPS for third-party JS when possible. We don't use protocol-relative URLs in this case because they break when viewing the page locally via file://.
- Only use third-party JS when there is no component available for it.
- For component/module specific styles, comply with
#unique-template-top-node-selector .my-generic-css-update { ... }
- Multiple-line approach (one pair
property: value;
per line) - Always a space after a property's colon (e.g.,
display: block;
and notdisplay:block;
) - End all property lines with a semi-colon
- Avoid trailing whitespace. Blank lines should not have any space.
- For multiple, comma-separated selectors, place each selector on its own line
- Attribute selectors, like
input[type="text"]
should always wrap the attribute's value in double quotes, for consistency and safety (see this blog post on unquoted attribute values that can lead to XSS attacks).
- Two spaces for indentation, never tabs.
var
everything, never comma first.- Single quotes only, never double quotes (opposite to HTML/Jade).
- Avoid trailing whitespace. Blank lines should not have any space.
- Inline documentation for new methods, class members, etc.
- One space between conditionals/functions, and their parenthesis and curly braces
if (..) {
for (..) {
while (..) {
function (err) {
- Always
'string' === type(el)
instead oftype(el) === 'string'