https://github.com/dart-lang/dartbug.com
The redirect service for Dart issues and bugs.
https://github.com/dart-lang/dartbug.com
Last synced: 4 months ago
JSON representation
The redirect service for Dart issues and bugs.
- Host: GitHub
- URL: https://github.com/dart-lang/dartbug.com
- Owner: dart-lang
- License: bsd-3-clause
- Created: 2012-08-23T23:58:26.000Z (almost 13 years ago)
- Default Branch: main
- Last Pushed: 2025-01-28T19:34:05.000Z (4 months ago)
- Last Synced: 2025-01-28T20:31:02.739Z (4 months ago)
- Language: Dart
- Homepage: https://dartbug.com/new
- Size: 231 KB
- Stars: 23
- Watchers: 37
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
Simple redirector to the Dart issue tracker.
dartbug.com --> issues list
dartbug.com/new --> new issue template
dartbug.com/ --> specific issue
dartbug.com/opened/ --> issues opened by github user
dartbug.com/assigned/ --> issues assigned to github user
dartbug.com/area/ --> issues in (i.e., tagged with label 'area-')
dartbug.com/triage --> an alias for 'triage/sdk'
dartbug.com/triage/sdk --> issues in the Dart SDK without an `area-` label assigned
dartbug.com/triage/core --> an alias for 'triage/core/issues'
dartbug.com/triage/core/issues --> untriaged issues for the Dart core packages (dart.dev published)
dartbug.com/triage/core/prs --> untriaged PRs for the Dart core packages (dart.dev published)
dartbug.com/triage/tools --> an alias for 'triage/tools/issues'
dartbug.com/triage/tools/issues --> untriaged issues for the Dart tools packages (tools.dart.dev published)
dartbug.com/triage/tools/prs --> untriaged PRs for the Dart tools packages (tools.dart.dev published)
dartbug.com/language --> issues list for language repo
dartbug.com/language/new --> new issue template in language repo
dartbug.com/language/ --> specific issue in language repo
dartbug.com/language/opened/ --> issues opened by github user in language repo
dartbug.com/language/assigned/ --> issues assigned to github user in language repo
dartbug.com/l --> shorthand for /languageSee the [LICENSE](LICENSE) file.
## Continuous deployment from Git using Cloud Build
The `dart-redirector` project is configured to deploy this application on every
push to `main` of [the repository](https://github.com/dart-lang/dartbug.com).See
[the documentation](https://cloud.google.com/run/docs/continuous-deployment-with-cloud-build)
for details.## Manual Deploy
Following instructions at https://cloud.google.com/run/docs/quickstarts/build-and-deploy:
1. ### Build the container
```console
$ gcloud builds submit --project dart-redirector --tag gcr.io/dart-redirector/app
```1. ### Deploy
```console
$ gcloud run deploy app --project dart-redirector --image gcr.io/dart-redirector/app --platform managed --max-instances=1 --timeout=10s
```## To update SDK Triage areas
```console
$ dart tool/update_sdk_labels.dart
```