Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hypothesis/bouncer
The "hyp.is" service that takes a user to a URL with Hypothesis activated
https://github.com/hypothesis/bouncer
annotation hypothesis
Last synced: 3 months ago
JSON representation
The "hyp.is" service that takes a user to a URL with Hypothesis activated
- Host: GitHub
- URL: https://github.com/hypothesis/bouncer
- Owner: hypothesis
- License: bsd-2-clause
- Created: 2016-02-16T15:49:49.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T07:35:37.000Z (7 months ago)
- Last Synced: 2024-04-02T12:17:45.139Z (7 months ago)
- Topics: annotation, hypothesis
- Language: Python
- Homepage:
- Size: 1.76 MB
- Stars: 47
- Watchers: 15
- Forks: 26
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - hypothesis/bouncer - The "hyp.is" service that takes a user to a URL with Hypothesis activated (others)
README
[![Build Status](https://github.com/hypothesis/bouncer/workflows/Continuous%20integration/badge.svg?branch=main)](https://github.com/hypothesis/bouncer/actions?query=branch%3Amain)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)Hypothesis Direct-Link Bouncer Service
======================================Installing bouncer in a development environment
-----------------------------------------------### You will need
* [Git](https://git-scm.com/)
* [Node](https://nodejs.org/) and npm.
On Linux you should follow
[nodejs.org's instructions for installing node](https://nodejs.org/en/download/package-manager/)
because the version of node in the standard Ubuntu package repositories is
too old.
On macOS you should use [Homebrew](https://brew.sh/) to install node.* [pyenv](https://github.com/pyenv/pyenv)
Follow the instructions in the pyenv README to install it.
The Homebrew method works best on macOS.### Clone the Git repo
git clone https://github.com/hypothesis/bouncer.git
This will download the code into an `bouncer` directory in your current working
directory. You need to be in the `bouncer` directory from the remainder of the
installation process:cd bouncer
### Start the development server
make dev
The first time you run `make dev` it might take a while to start because it'll
need to install the application dependencies and build the assets.This will start the server on port 8000 (http://localhost:8000), reload the
application whenever changes are made to the source code, and restart it should
it crash for some reason.**That's it!** You’ve finished setting up your bouncer development environment. Run
`make help` to see all the commands that're available for running the tests,
linting, code formatting, etc.Configuration
-------------You can set various environment variables to configure bouncer:
- CHROME_EXTENSION_ID
- The ID of the Hypothesis Chrome extension that bouncer will communicate with
(default: the ID of the official Hypothesis Chrome extension) - DEBUG
- If
DEBUG
is set (to any value) then tracebacks will be printed to the
terminal for any unexpected Python exceptions. If there is noDEBUG
variable set in the environment then unexpected Python exceptions will be
reported to Sentry and a generic error page shown to the user. - ELASTICSEARCH_URL
- The url (host and port) of the Elasticsearch server that bouncer will read
annotations from (default: http://localhost:9200) - ELASTICSEARCH_INDEX
- The name of the Elasticsearch index that bouncer will read annotations
from (default: hypothesis) - HYPOTHESIS_AUTHORITY
- The domain name of the Hypothesis service's first party authority.
This is usually the same as the domain name of the Hypothesis service
(default: localhost). - HYPOTHESIS_URL
- The URL of the Hypothesis front page that requests to bouncer's front page
will be redirected to (default: https://hypothes.is) - SENTRY_DSN
- The DSN (Data Source Name) that bouncer will use to report crashes to
Sentry - VIA_BASE_URL
- The base URL of the Via service that bouncer will redirect users to if they
don't have the Hypothesis Chrome extension installed
(default: https://via.hypothes.is)
Route Syntax/API
----------------
### Share Annotations on Page/URL (`/go`)
Go to a specified URL and display annotations there. Optionally filter which
annotations are displayed.
Querystring parameters:
* `url` (required): URL of target page/document
* `group` (optional): group ID. Show annotations within a specified group.
* `q` (optional): Search query. Filter annotations at URL to those that match
this search query.
### Share an Annotation (`/{id}` or `/{id}/{url}`)
Go to an individual annotation, where `id` is the annotation's unique ID.
Optional `url` path parameter: URL of the annotation's target document.
This is intended to enhance the readability of shared annotation URLs and
is functionally identical to the `/{id}` route.