mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
Add github special files
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
4b36c02567
commit
30cd1821bc
3 changed files with 106 additions and 2 deletions
24
.github/contributing.md
vendored
Normal file
24
.github/contributing.md
vendored
Normal file
|
|
@ -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/).
|
||||
82
.github/issue_template.md
vendored
Normal file
82
.github/issue_template.md
vendored
Normal file
|
|
@ -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>
|
||||
2
Makefile
2
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 \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue