Catching Annotation (Catch-A)
This software was created for the Harvard Library Labs project CATCH (https://osc.hul.harvard.edu/liblab/proj/catch) awarded to Phil Desenne, Martin Schreiner and Paolo Ciccarese
The software was originally written by:
You can find the core plugin dependencies at https://github.com/annotationframework.
Start a discussion on our Slack. Great place to ask questions, discuss feature requests, and report bugs.
$ curl -s get.gvmtool.net | bash
After downloading the source code check catcha/Catch/application.properties
to find the required Grails version.
app.grails.version=2.2.1
To install the appropriate grails version:
$ gvm install grails 2.2.1
See http://dev.mysql.com/downloads/installer/. On Ubuntu
sudo apt-get install mysql-server
$ git clone https://github.com/annotationsatharvard/catcha.git
There are several plugins that are included as "local plugin" dependencies within the application's BuildConfig.groovy
. It's important that the root directory of these plugins (annotationframework
) is located at the same level as the catcha
directory.
$ mkdir annotationframework
$ cd annotationframework
$ git clone https://github.com/annotationframework/AfPersistence.git
$ git clone https://github.com/annotationframework/AfSecurity.git
$ git clone https://github.com/annotationframework/AfShared.git
mysql -u root -p -e 'create database catch default charset utf8;'
mysql -u root -p -e 'grant all on catch.* to "catch"@"localhost" identified by "<password>";'
If you changed the database name, username, or password you need to edit an external configuration file.
NOTE: I needed to rename the file (lowercase 'c') in order to get the application to read this file.
$ cd Catch
$ mv Catch-config.properties catch-config.properties
Add the following properties to catcha/Catch/catch-config.properties
.
# Database connection settings
dataSource.url=jdbc:mysql://localhost:3306/catch?autoReconnect=true&zeroDateTimeBehavior=convertToNull&sessionVariables=storage_engine=InnoDB
dataSource.username=catch
dataSource.password=<password>
NOTE: Do NOT change the database name as there is a bug I just discovered in the Liquibase changesets that hard-codes the schema name to "catch" when dealing with foreign key contstraints.
$ grails run-app
When developing with Docker, all the dependencies are included in docker images. No need to install anything on the host other than (docker)[https://docs.docker.com/engine/installation/]
NOTE: This repo has submodules. If --recursive
is not specified when cloning the repo, you need to run git submodule update --init
to pull down the submodules.
Update the following line in catch-config.properties
:
dataSource.url=jdbc:mysql://localhost:3306/catch_test?useUnicode=yes&characterEncoding=UTF-8&autoReconnect=true
To
dataSource.url=jdbc:mysql://db:3306/catch?useUnicode=yes&characterEncoding=UTF-8&autoReconnect=true
docker-compose up -d
Docker will download official MySQL image and build catcha image. Docker-compose will create a docker network and run both images. Once they are started, the application can be accessed at http://localhost:8080.
Once the docker containers are running, you can make changes to the files on the host and they will be auto-reloaded.
docker logs -f catch_app_1
docker-compose stop
docker-compose down