{"id":13928939,"url":"https://github.com/nextcloud/issuetemplate","last_synced_at":"2025-07-24T08:09:59.270Z","repository":{"id":10645586,"uuid":"66476946","full_name":"nextcloud/issuetemplate","owner":"nextcloud","description":":construction: Nextcloud app for easy bug reporting with prefilled issue templates","archived":false,"fork":false,"pushed_at":"2025-06-24T04:53:09.000Z","size":7346,"stargazers_count":15,"open_issues_count":25,"forks_count":9,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-07-15T06:03:24.337Z","etag":null,"topics":["bugreport","nextcloud"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nextcloud.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-08-24T15:39:27.000Z","updated_at":"2025-06-24T04:53:13.000Z","dependencies_parsed_at":"2023-02-18T13:30:51.388Z","dependency_job_id":"52c7a549-07b0-4aa1-bd1e-53d58d0e8674","html_url":"https://github.com/nextcloud/issuetemplate","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/nextcloud/issuetemplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fissuetemplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fissuetemplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fissuetemplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fissuetemplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nextcloud","download_url":"https://codeload.github.com/nextcloud/issuetemplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fissuetemplate/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266813422,"owners_count":23988544,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bugreport","nextcloud"],"created_at":"2024-08-07T18:02:00.224Z","updated_at":"2025-07-24T08:09:59.253Z","avatar_url":"https://github.com/nextcloud.png","language":"PHP","funding_links":[],"categories":["others"],"sub_categories":[],"readme":"# Issue Template\n\nNextcloud app to prefill github issue with current server information.\n\n![Screenshot](https://raw.githubusercontent.com/juliushaertl/issuetemplate/master/screenshot.png)\n\nPlace this app in **nextcloud/apps/**\n\n## Building the app\n\nThe app can be built by using the provided Makefile by running:\n\n    make\n\nThis requires the following things to be present:\n* make\n* which\n* tar: for building the archive\n* curl: used if phpunit and composer are not installed to fetch them from the web\n* npm: for building and testing everything JS, only required if a package.json is placed inside the **js/** folder\n\nThe make command will install or update Composer dependencies if a composer.json is present and also **npm run build** if a package.json is present in the **js/** folder. The npm **build** script should use local paths for build systems and package managers, so people that simply want to build the app won't need to install npm libraries globally, e.g.:\n\n**package.json**:\n```json\n\"scripts\": {\n    \"test\": \"node node_modules/gulp-cli/bin/gulp.js karma\",\n    \"prebuild\": \"npm install \u0026\u0026 node_modules/bower/bin/bower install \u0026\u0026 node_modules/bower/bin/bower update\",\n    \"build\": \"node node_modules/gulp-cli/bin/gulp.js\"\n}\n```\n\n\n## Publish to App Store\n\nFirst get an account for the [App Store](http://apps.nextcloud.com/) then run:\n\n    make \u0026\u0026 make appstore\n\nThe archive is located in build/artifacts/appstore and can then be uploaded to the App Store.\n\n## Running tests\nYou can use the provided Makefile to run all tests by using:\n\n    make test\n\nThis will run the PHP unit and integration tests and if a package.json is present in the **js/** folder will execute **npm run test**\n\nOf course you can also install [PHPUnit](http://phpunit.de/getting-started.html) and use the configurations directly:\n\n    phpunit -c phpunit.xml\n\nor:\n\n    phpunit -c phpunit.integration.xml\n\nfor integration tests\n\n## Integration for app developers\n\nApps will appear automatically in the issue template app once their appinfo.xml contains a `\u003cbugs\u003e` tag with an URL to the GitHub issue tracker.\n\nAdding custom details to your issue report:\n```\n$dispatcher = \\OC::$server-\u003egetEventDispatcher();\n$dispatcher-\u003eaddListener('\\OCA\\IssueTemplate::queryAppDetails', function(GenericEvent $event) {\n    if($event-\u003egetArgument('app') === 'deck') {\n        $manager = \\OC::$server-\u003equery(\\OCA\\IssueTemplate\\DetailManager::class);\n        $section = new \\OCA\\IssueTemplate\\Section('server-config', 'Server configuration');\n        $section-\u003ecreateDetail('Operating system', php_uname());\n        $section-\u003ecreateDetail('PHP version', PHP_VERSION);\n        $manager-\u003eaddSection($section);\n    }\n});\n```\n\nSections provided by default can be disabled using `\\OCA\\IssueTemplate\\DetailManager::removeSection($sectionName)` method. Currently the following 3 section names are provided by default:\n\n- server-detail\n- log-detail\n- client-detail\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextcloud%2Fissuetemplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnextcloud%2Fissuetemplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextcloud%2Fissuetemplate/lists"}