From 703d93b9d50abd07b2b8518be5b0b2a026004ae7 Mon Sep 17 00:00:00 2001 From: sfehlandt Date: Wed, 14 Aug 2019 18:29:19 -0400 Subject: [PATCH 1/3] Update README --- README.md | 43 +------------------------------------------ 1 file changed, 1 insertion(+), 42 deletions(-) diff --git a/README.md b/README.md index 11bdb7aa..ff97c1f3 100644 --- a/README.md +++ b/README.md @@ -2,45 +2,4 @@ This repository contains the code of the Django Channels project that acts as middleware for the LOVE-frontend -## Basic local usage - -Run the producer as in https://github.com/lsst-ts/LOVE-backend/blob/master/README.md - -Run redis from the `LOVE-integration-tools/deploy/dev$` - -```docker-compose up redis``` - -Move to the telemetry-manager folder and load a virtualenv - -``` -python3 -m venv virtualenv -source virtualenv/bin/activate -``` - -and open the manager: - -``` -python3 manage.py runserver -``` - - -Open https://www.websocket.org/echo.html in a browser and connect to this address: - -``` -ws://localhost:8000/ws/subscription/ -``` - -And send this message: -`{"option": "subscribe", "data": "avoidanceRegions"}` - -In the log you should see something like: - -``` -RECEIVED: {"data": "Successfully subscribed to \"avoidanceRegions\""} - - -RECEIVED: {"data": {"avoidanceRegions": 1, "scale": 0.4713086485862732, "timestamp": 0.8468274284829842, "zero": 0.17323127388954163}} - - -... -``` +See the documentation here: https://lsst-ts.github.io/LOVE-manager/html/index.html From db85d7c5daf70e4919f216ecd01128edee5001cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2019 14:24:13 +0000 Subject: [PATCH 2/3] Bump twisted from 19.2.1 to 19.7.0 in /manager Bumps [twisted](https://github.com/twisted/twisted) from 19.2.1 to 19.7.0. - [Release notes](https://github.com/twisted/twisted/releases) - [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst) - [Commits](https://github.com/twisted/twisted/compare/twisted-19.2.1...twisted-19.7.0) Signed-off-by: dependabot[bot] --- manager/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/requirements.txt b/manager/requirements.txt index f2fa7213..fc7162b0 100644 --- a/manager/requirements.txt +++ b/manager/requirements.txt @@ -40,6 +40,6 @@ pytz==2018.7 six==1.12.0 Sphinx==2.1.2 sphinx-rtd-theme==0.4.3 -Twisted==19.2.1 +Twisted==19.7.0 txaio==18.8.1 zope.interface==4.6.0 From 60d9a78f5be8e4e6f67424050ac2118b3f210972 Mon Sep 17 00:00:00 2001 From: sfehlandt Date: Wed, 21 Aug 2019 15:58:48 -0400 Subject: [PATCH 3/3] Push docker images to lsstts docker hub --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b8878b26..6e5c47bc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,7 @@ pipeline { agent any environment { registryCredential = "dockerhub-inriachile" - dockerImageName = "inriachile/love-manager:" + dockerImageName = "lsstts/love-manager:" dockerImage = "" }