OAPEN Suggestion Service Web Application - SIT Senior Capstone
 
 
 
 
 
 
Go to file
Peter Rauscher 96718d29d3
Reference Ron's article in README
2023-04-07 14:01:20 +00:00
.github/workflows Basic testing (#45) 2023-03-22 14:52:38 -04:00
api OAP-68: Combine config.env and database.ini (#52) 2023-04-07 09:37:43 -04:00
embed-script Embed script deployment fixes (#37) 2023-03-03 09:13:53 -05:00
oapen-engine OAP-68: Combine config.env and database.ini (#52) 2023-04-07 09:37:43 -04:00
web Setup docker (#26) 2022-12-13 07:46:08 -05:00
.env OAP-68: Combine config.env and database.ini (#52) 2023-04-07 09:37:43 -04:00
.flake8 [Draft] OAP-32 Ngram Caching (#18) 2022-11-02 23:07:56 -04:00
.gitignore Fixed minor error with handle validation (#33) 2023-02-09 16:46:22 +00:00
.isort.cfg Fix pre-commit hook + linting jobs for OAPEN engine (#14) 2022-10-23 19:51:47 -04:00
.pre-commit-config.yaml Fix pre-commit hook + linting jobs for OAPEN engine (#14) 2022-10-23 19:51:47 -04:00
LICENSE.md Create LICENSE.md 2022-09-27 14:00:13 -04:00
README.md Reference Ron's article in README 2023-04-07 14:01:20 +00:00
docker-compose.yml OAP-68: Combine config.env and database.ini (#52) 2023-04-07 09:37:43 -04:00
pyproject.toml Fix pre-commit hook + linting jobs for OAPEN engine (#14) 2022-10-23 19:51:47 -04:00
setup.cfg [Draft] OAP-32 Ngram Caching (#18) 2022-11-02 23:07:56 -04:00

README.md

OAPEN Suggestion Engine

Description

The OAPEN Suggestion Engine will suggest e-books based on other books with similar content. It achieves this using a trigram semantic inferecing algorithm. You can read more about the paper which started it all here.

Table of Contents

Installation

1. Install Docker

This project uses Docker. To run the project, you will need to have Docker installed. You can find instructions for installing Docker here. Note that on Linux, if you do not install Docker with Docker Desktop, you will have to install Docker Compose separately, instructions for which can be found here.

2. Install PostgreSQL

The project uses PostgreSQL as a database. You can find instructions for installing PostgreSQL here. Make sure it is running, and a database is created. Take note of the credentials and name of the database you create, you will need them for the next step.

3. Clone the repository

Clone the repository:

git clone https://github.com/EbookFoundation/oapen-suggestion-service.git

And go into the project directory:

cd oapen-suggestion-service

4. Configure the environment

And create a file .env with the following, replacing <> with the described values:

API_PORT=<Port to serve API on>
WEB_DEMO_PORT=<Port to serve web demo on>
EMBED_SCRIPT_PORT=<Port to serve embed script on>
POSTGRES_HOST=<Hostname of postgres server, will be "localhost" on local installation>
POSTGRES_PORT=<Port postgres is running on, default of 5432 in most cases>
POSTGRES_DB_NAME=<Name of the postgres database, "postgres" works fine here>
POSTGRES_USERNAME=<Username of the postgres user>
POSTGRES_PASSWORD=<Password of the postgres user>

The service will not run if this is improperly configured.

5. Run the service

Now you can simply start the service with:

docker compose up

You can now connect to the API at http://localhost:<API_PORT>

Configuration

More configuration options should go here

Endpoints

The API provides access to the following endpoints:

Service Components

This project is a monorepo, with multiple services that work in tandem to provide suggestions: the database, the suggestion engine, the API server, the embed script, and the web demo.

Suggestion Engine

This engine is written in Python, and generates the recommendation data for users. Our suggestion service is centered around the trigram semantic inferencing algorithm. This script should be run as a job on a cron schedule to periodically ingest new texts added to the OAPEN catalog through their API. It populates the database with pre-processed lists of suggestions for each entry in the catalog.

You can find the code for the suggestion engine in oapen-engine/, and read more about it in oapen-engine/README.md.

API

This API server serves book recommendations from the database over HTTP in a standard RESTful architecture.

You can find the code for the API in api/, and readmore about it in api/README.md.

Embed Script

To be added

Web Demo (Optional)

This is a web-app demo that can be used to query the API engine and see suggested books. This does not have to be maintained if the API is used on another site, but is useful for development and a tech demo.

You can find the code for the web demo in web/.

Configuration info for the web demo is in web/README.md.