Joseph Padfield
Joseph Padfield
@danielgrant For the scripts, from your list it was easy to make: ``` #!/bin/bash PATH="/usr/local/elucidate/elucidate-db-scripts" OUT="$PATH/out.sql" /bin/cat $PATH/annotations.sql >> $OUT /bin/cat $PATH/group_roles/annotations_role.sql >> $OUT /bin/cat $PATH/login_roles/annotations_user.sql >> $OUT /bin/cat $PATH/tables/annotation_collection.sql...
@danielgrant I have tried running the combined SQL and unfortunately is does not seem to be happy. Most of it runs fine and it does run to the end, but...
Most of the errors were related to the user issue at the start - removing the "UNENCRYPTED" in front of the password allowed it all to run - just one...
Yes that's the one, in the file: /views/annotation_collection_get.sql line 17: ```ALTER TABLE public.annotation_collection_getOWNER TO postgres;'``` needs to be edited to: ```ALTER TABLE public.annotation_collection_get OWNER TO postgres;```
Hi, I hope I am almost there now, but there still seem to be some issues deploying the war file. I seem to be getting a lot of errors relating...
@garyttierney - the war file now deploys :-) The root page /annotation returns a 404, but I will now explore how to actual use the server. Thanks