bugbug/http_service
dependabot[bot] e93a01d2a5
Bump sentry-sdk[flask] from 1.10.1 to 1.11.0 (#3182)
Bumps [sentry-sdk[flask]](https://github.com/getsentry/sentry-python) from 1.10.1 to 1.11.0.
- [Release notes](https://github.com/getsentry/sentry-python/releases)
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-python/compare/1.10.1...1.11.0)

---
updated-dependencies:
- dependency-name: sentry-sdk[flask]
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-19 00:27:06 +01:00
..
bugbug_http Don't ignore commits on non-tip branches when running test selection for try pushes (bug 1790493) (#3087) 2022-09-22 13:49:36 +02:00
tests Use queue.enqueue_many() to schedule multiple classifications (#2655) 2021-12-07 23:02:45 +01:00
.dockerignore Add WIP integration test (#823) 2019-09-13 15:18:46 +02:00
Dockerfile Bug 1622336 - Trigger schedules API as soon as a push happens (#1548) 2020-05-08 17:05:16 +02:00
Dockerfile.bg_worker Allow overriding the version of bugbug used while building the HTTP service worker image (#1345) 2020-03-02 11:26:41 +01:00
MANIFEST.in Use the new bugbug_http module, fixing tests and docker build 2020-02-28 10:49:40 +01:00
README.md Add support for GitHub issue classification to the HTTP service (#2330) 2021-05-11 08:48:07 +02:00
docker-compose.yml Add support for GitHub issue classification to the HTTP service (#2330) 2021-05-11 08:48:07 +02:00
ensure_models.sh Merge check_models script functionality into download_models 2020-03-23 13:28:57 +01:00
requirements.txt Bump sentry-sdk[flask] from 1.10.1 to 1.11.0 (#3182) 2022-11-19 00:27:06 +01:00
setup.py Bug 1622336 - Trigger schedules API as soon as a push happens (#1548) 2020-05-08 17:05:16 +02:00

README.md

Local development

For starting the service locally run the following commands.

Start Redis:

docker-compose up redis

Build the http service image:

docker build -t mozilla/bugbug-http-service -f Dockerfile .

Start the http service:

docker-compose up bugbug-http-service

Build the background worker image:

docker build -t mozilla/bugbug-http-service-bg-worker --build-arg TAG=latest -f Dockerfile.bg_worker .

Run the background worker:

docker-compose up bugbug-http-service-bg-worker