diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2016-02-18 13:15:11 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@smile.fr> | 2016-02-18 13:15:11 +0100 |
commit | c665b863c7c15c1928d63b55b13e3abd5790082e (patch) | |
tree | 7da4ae1cb51bf6d218dec93ca62501e28cdf1ccf /.github/CONTRIBUTING.md | |
parent | bbbcd6997be27f2bbf3638132575345733f3c235 (diff) | |
download | wallabag-c665b863c7c15c1928d63b55b13e3abd5790082e.tar.gz wallabag-c665b863c7c15c1928d63b55b13e3abd5790082e.tar.zst wallabag-c665b863c7c15c1928d63b55b13e3abd5790082e.zip |
Fix #1691 create ISSUE_TEMPLATE and PULL_REQUEST_TEMPLATE
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r-- | .github/CONTRIBUTING.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..ffb29f9e --- /dev/null +++ b/.github/CONTRIBUTING.md | |||
@@ -0,0 +1,30 @@ | |||
1 | # How to contribute | ||
2 | |||
3 | ## You found a bug | ||
4 | Please [open a new issue](https://github.com/wallabag/wallabag/issues/new). | ||
5 | |||
6 | To fix the bug quickly, we need some infos: | ||
7 | * your wallabag version (on top of the ./index.php file, and also on config page) | ||
8 | * your webserver installation : | ||
9 | * type of hosting (shared or dedicated) | ||
10 | * in case of a dedicated server, the server and OS used | ||
11 | * the php version used, eventually `phpinfo()` | ||
12 | * which storage system you choose at install (SQLite, MySQL/MariaDB or PostgreSQL) | ||
13 | * any problem on the `wallabag_compatibility_test.php` page | ||
14 | * any particular details which could be related | ||
15 | |||
16 | |||
17 | If relevant : | ||
18 | * the link you want to save and which causes problem | ||
19 | * the file you want to import into wallabag, or just an extract | ||
20 | |||
21 | If you have the skills : | ||
22 | * enable DEBUG mode and look the output at cache/log.txt | ||
23 | * look for errors into php and server logs | ||
24 | |||
25 | Note : If you have large portions of text, use [Github's Gist service](https://gist.github.com/) or other pastebin-like. | ||
26 | |||
27 | ## You want to fix a bug or to add a feature | ||
28 | Please fork wallabag and work with **the dev branch** only. **Do not work on master branch**. | ||
29 | |||
30 | [Don't forget to read our guidelines](https://github.com/wallabag/wallabag/blob/dev/GUIDELINES.md). | ||