``This is the first draft/version of the Open Discourse Classes.
This PR introduces 2 classes:
OpenDiscourse
** this is the base class. Currently it only provides a method to download a specific data table from a running OpenDiscourse Docker Container
OData
** this is the OpenDiscourse Data Object. This class connects to the docker DB and sneds a SQL query to retrieve the data table
Furthermore there is a Makefile now that provides two command line helpers:
make install-db -> downloads and starts the latest OpenDiscourse Container from GitHub
make delete-db -> stops and removes the docker container
Finally, the get_data2.R script in /scripts provides an example of how to use the two R6 classes
``This is the first draft/version of the Open Discourse Classes.
This PR introduces 2 classes:
OpenDiscourse
** this is the base class. Currently it only provides a method to download a specific data table from a running OpenDiscourse Docker ContainerOData
** this is the OpenDiscourse Data Object. This class connects to the docker DB and sneds a SQL query to retrieve the data tableFurthermore there is a
Makefile
now that provides two command line helpers:make install-db
-> downloads and starts the latest OpenDiscourse Container from GitHubmake delete-db
-> stops and removes the docker containerFinally, the
get_data2.R
script in/scripts
provides an example of how to use the two R6 classes