{"id":19239194,"url":"https://github.com/atomotic/iiif-annotation-studio","last_synced_at":"2025-10-05T12:54:16.837Z","repository":{"id":146672864,"uuid":"145458279","full_name":"atomotic/iiif-annotation-studio","owner":"atomotic","description":"Mirador IIIF Viewer packaged as a desktop app with an embedded annotation endpoint","archived":false,"fork":false,"pushed_at":"2019-03-11T19:58:08.000Z","size":5648,"stargazers_count":15,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-09T13:23:48.278Z","etag":null,"topics":["annotations","iiif","mirador","mirador-viewer"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atomotic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-08-20T18:53:38.000Z","updated_at":"2025-02-12T14:22:56.000Z","dependencies_parsed_at":"2024-01-07T18:09:45.140Z","dependency_job_id":null,"html_url":"https://github.com/atomotic/iiif-annotation-studio","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/atomotic/iiif-annotation-studio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomotic%2Fiiif-annotation-studio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomotic%2Fiiif-annotation-studio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomotic%2Fiiif-annotation-studio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomotic%2Fiiif-annotation-studio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atomotic","download_url":"https://codeload.github.com/atomotic/iiif-annotation-studio/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomotic%2Fiiif-annotation-studio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278457471,"owners_count":25989956,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["annotations","iiif","mirador","mirador-viewer"],"created_at":"2024-11-09T16:37:52.096Z","updated_at":"2025-10-05T12:54:16.820Z","avatar_url":"https://github.com/atomotic.png","language":"JavaScript","funding_links":[],"categories":["Annotations"],"sub_categories":["Annotation Clients"],"readme":"# IIIF Annotation Studio\n\nThis is the [Mirador IIIF Viewer](https://projectmirador.org) packaged as a desktop app with an embedded annotation endpoint that saves annotations to a local sqlite database.\n\n![](https://gist.githubusercontent.com/atomotic/f621ab4364a0bd520dd1066bc4d0e439/raw/1ae8d554576bbe0ecae6b5630dbaa262e26d8615/iiif-annotation-studio.png)\n\nThis is a proof of concept, slightly usable at the moment.\nA lot of things are missing:\n\n- [x] annotation api: create\n- [x] annotation api: update and delete\n- [ ] UI: a page listing all manifests and relative annotations\n- [ ] export (and import) of annotations\n- [ ] builds for linux (AppImage) and Windows\n- [ ] share annotations (maybe using DAT)\n\n## Build\n\nClone\n\n    git clone https://github.com/atomotic/iiif-annotation-studio\n    cd iiif-annotation-studio\n\nInstall go-bindata\n\n    go get github.com/jteeuwen/go-bindata/...\n    go get github.com/elazarl/go-bindata-assetfs/...\n\nInstall modules (requires [dep](https://github.com/golang/dep))\n\n    dep ensure\n\nPackage static assets\n\n    go-bindata-assetfs static/...\n\n— Build for macos\n\n    go build -o \"build/macos/IIIF Annotation Studio.app/Contents/MacOS/IIIF Annotation Studio.app\"\n\nRun `IIIF Annotation Studio.app` from build/macos  \n(if you trust me there is a ready made build in [releases](https://github.com/atomotic/iiif-annotation-studio/releases))\n\n— Build for linux. GTK3 and GtkWebkit2 required, not yet tested.\n\n    go build\n    ./iiif-annotation-studio\n\n## Backup\n\nThe first run creates the sqlite database `$HOME/.annotations/annotations.db` if not existing. Just backup this file.\n\n    ➜  ~ sqlite3 ~/.annotations/annotations.db .schema\n    CREATE TABLE annotations (\n    \t\tid INTEGER PRIMARY KEY,\n    \t\tannoid VARCHAR,\n    \t\tcreated_at DATETIME,\n    \t\ttarget VARCHAR,\n    \t\tmanifest VARCHAR,\n    \t\tbody TEXT);\n    CREATE UNIQUE INDEX annotation_id ON annotations (annoid);\n\n## Disclaimer\n\nIs this another Electron app? NO, is made in golang with [zserge/webview](https://github.com/zserge/webview).\n\n## See also\n\n[Mirador Desktop](https://github.com/ProjectMirador/mirador-desktop): Electron based, annotations on LocalStorage\n\n## Acknowledgement\n\n[demetsiiify](https://github.com/jbaiter/demetsiiify) by [Johannes Baiter](https://github.com/jbaiter) contains an extremely simple annotation server that is probably the best piece of code to learn how Mirador interacts with annotations stores.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomotic%2Fiiif-annotation-studio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatomotic%2Fiiif-annotation-studio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomotic%2Fiiif-annotation-studio/lists"}