Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-01-17 13:10:40 +0300
committerJoas Schilling <coding@schilljs.com>2017-01-17 13:10:40 +0300
commit30cd1821bce29ae1c7d14f5649366b433b3a1c2f (patch)
tree35b85fa0f2da57f5a974b4f24c5982e87c70977e
parent4b36c02567ae2439d70702f6aed68e1a53adf33e (diff)
Add github special files
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/contributing.md24
-rw-r--r--.github/issue_template.md82
-rw-r--r--Makefile2
3 files changed, 106 insertions, 2 deletions
diff --git a/.github/contributing.md b/.github/contributing.md
new file mode 100644
index 000000000..e7f6dbced
--- /dev/null
+++ b/.github/contributing.md
@@ -0,0 +1,24 @@
+## Submitting issues
+
+### Short version
+
+ * The [**issue template can be found here**](https://raw.github.com/nextcloud/spreed/master/.github/issue_template.md) but be aware of the different repositories! See list below. Please always use the issue template when reporting issues.
+
+### Guidelines
+* Please search the existing issues first, it's likely that your issue was already reported or even fixed.
+ - Go to one of the repositories, click "issues" and type any word in the top search/command bar.
+ - You can also filter by appending e. g. "state:open" to the search string.
+ - More info on [search syntax within github](https://help.github.com/articles/searching-issues)
+* Report the issue using our [template](https://raw.github.com/nextcloud/spreed/master/.github/issue_template.md), it includes all the informations we need to track down the issue.
+
+If your issue appears to be a bug, and hasn't been reported, open a new issue.
+
+Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues.
+
+
+## Contributing to Source Code
+
+Thanks for wanting to contribute source code to the Mail app. That's great!
+
+## Translations
+Please submit translations via [Transifex](https://www.transifex.com/nextcloud/nextcloud/spreed/).
diff --git a/.github/issue_template.md b/.github/issue_template.md
new file mode 100644
index 000000000..3bd4c7745
--- /dev/null
+++ b/.github/issue_template.md
@@ -0,0 +1,82 @@
+## Steps to reproduce
+1.
+2.
+3.
+
+### Expected behaviour
+Tell us what should happen
+
+### Actual behaviour
+Tell us what happens instead
+
+## Browser
+
+**Microphone available:** yes/no
+
+**Camera available:** yes/no
+
+**Operating system:** Windows/Ubuntu/...
+
+**Browser name:** Firefox/Chrome/...
+
+**Browser version:** 50.1/55/...
+
+### Browser log
+
+<details>
+```
+Insert your browser log here, this could for example include:
+a) The javascript console log
+b) The network log
+c) ...
+```
+
+</details>
+
+## Spreed app
+
+**Spreed app version:** (see apps admin page: `/index.php/settings/apps`)
+
+**Custom TURN server configured:** yes/no (see additional admin settings: `/index.php/settings/admin/additional`)
+
+**Custom STUN server configured:** yes/no (see additional admin settings: `/index.php/settings/admin/additional`)
+
+
+## Server configuration
+
+**Operating system**: Ubuntu/RedHat/...
+
+**Web server:** Apache/Nginx
+
+**Database:** MySQL/Maria/SQLite/PostgreSQL
+
+**PHP version:**
+
+**Nextcloud Version:** (see admin page)
+
+**List of activated apps:**
+
+<details>
+```
+If you have access to your command line run e.g.:
+sudo -u www-data php occ app:list
+from within your server installation folder
+```
+</details>
+
+**Config information:**
+
+<details>
+```
+If you have access to your command line run e.g.:
+sudo -u www-data php occ config:list system
+from within your server installation folder
+```
+</details>
+
+### Server log (data/nextcloud.log)
+<details>
+```
+Insert your server log here
+```
+</details>
diff --git a/Makefile b/Makefile
index fdf7fad58..4d88a5503 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,6 @@ appstore: clean install-deps
--exclude=bower.json \
--exclude=.bowerrc \
--exclude=/build \
- --exclude=CONTRIBUTING.md \
--exclude=docs \
--exclude=.drone.yml \
--exclude=.eslintignore \
@@ -48,7 +47,6 @@ appstore: clean install-deps
--exclude=.gitattributes \
--exclude=.github \
--exclude=.gitignore \
- --exclude=issue_template.md \
--exclude=.jscsrc \
--exclude=.jshintignore \
--exclude=js/tests \