{"id":13807100,"url":"https://github.com/texttheater/ccgweb","last_synced_at":"2026-04-09T19:01:14.176Z","repository":{"id":146773713,"uuid":"113301457","full_name":"texttheater/ccgweb","owner":"texttheater","description":"A Web platform for parsing and annotation","archived":false,"fork":false,"pushed_at":"2022-12-07T12:20:40.000Z","size":105270,"stargazers_count":5,"open_issues_count":4,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-18T23:51:53.366Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Hack","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/texttheater.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-12-06T10:18:52.000Z","updated_at":"2024-02-29T14:38:31.000Z","dependencies_parsed_at":"2024-01-07T11:04:46.398Z","dependency_job_id":null,"html_url":"https://github.com/texttheater/ccgweb","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/texttheater%2Fccgweb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/texttheater%2Fccgweb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/texttheater%2Fccgweb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/texttheater%2Fccgweb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/texttheater","download_url":"https://codeload.github.com/texttheater/ccgweb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254046223,"owners_count":22005556,"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","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":[],"created_at":"2024-08-04T01:01:20.818Z","updated_at":"2025-12-30T13:56:06.410Z","avatar_url":"https://github.com/texttheater.png","language":"Hack","funding_links":[],"categories":["Grammar"],"sub_categories":[],"readme":"CCGweb\n======\n\nCCGweb is a Web-based annotation platform for Combinatory Categorial Grammar\n(CCG).\n\nA live demo is available here: https://ccgweb.phil.hhu.de/\n\nCCGweb is described in the following paper:\n\nKilian Evang, Lasha Abzianidze, Johan Bos (2019): CCGweb: a New Annotation Tool\nand a First Quadrilingual CCG Treebank. In *Proceedings of the 13th Linguistic\nAnnotation Workshop*. Florence, Italy: Association for Computational\nLinguistics.\n\nTechnical Overview\n------------------\n\nCCGweb consists of three parts:\n\n* a natural language processing pipeline that turns raw text into CCG\n  derivations, optionally aided by human annotation decisions\n* a REST server\n* a PHP frontend\n\nDatabase\n--------\n\nThe REST server requires a MySQL database to store its data. Assuming you want\nto use a database called `ccgweb` on `localhost` with user `ccgweb` and password\n`topsecret123`, this is how you can create it (enter the respective passwords\nwhen asked):\n\n    $ mysql -u root -p\n    mysql\u003e CREATE DATABASE ccgweb;\n    mysql\u003e GRANT ALL PRIVILEGES ON ccgweb.* TO 'ccgweb'@'localhost' IDENTIFIED BY 'topsecret123';\n    mysql\u003e EXIT;\n    $ mysql -u ccgweb -p ccgweb \u003c db_structure.sql\n\nAlso create a file `config.json` that contains your database credentials. Use\n`config.json.sample` as a template.\n\nPipeline\n--------\n\nThe pipeline is defined by the rules in `produce.ini`. Its output files are\ndumped into the `out` directory. Its software dependencies must be placed into\nthe `ext` directory and models into the `models` directory before use.\nSpecifically, the following directories and files are expected to exist:\n\n* `ext/easyccg/easyccg.jar`: the [Parallel Meaning Bank patched version of Mike\n  Lewis’s EasyCCG parser](https://github.com/ParallelMeaningBank/easyccg)\n* `models/parse/{eng,deu,ita,nld}.model`: EasyCCG models for English, German,\n  Italian and Dutch.\n* `ext/elephant`, the\n  [Elephant](https://github.com/ParallelMeaningBank/elephant) tokenizer\n* `models/tok.iob/{eng,deu,ita,nld}.model`, Elephant models for English,\n  German, Italian and Dutch.\n* `models/ud-2.2-conll18-baseline-models`,\n  [models for UDPipe](http://ufal.mff.cuni.cz/udpipe#language_models)\n  (used for tokenization)\n* `ext/produce`, the [Produce](https://github.com/texttheater/produce) build\n  system.\n* `ext/viasock`, the [Viasock](https://github.com/texttheater/viasock)\n  serverizer.\n\nFurther dependencies can be installed as follows on Ubuntu 16.04:\n\n    sudo apt install python-lxml swi-prolog python3-pip python3-setuptools python3-wheel python3-dev build-essentials\n    pip3 install --user ufal.udpipe\n\nREST API\n--------\n\nTo install the dependencies for the REST server on Ubuntu 16.04:\n\n    sudo apt install python3-falcon gunicorn3 python3-mysqldb python3-passlib python3-lxml\n\nTo start it:\n\n    ./rest-server\n\nPHP Frontend\n------------\n\nTo install the dependencies for the PHP frontend on Ubuntu 16.04:\n\n    sudo apt install php php-xsl composer\n    cd site\n    composer install\n    cd ..\n\nTo create a test installation at `http://localhost/ccgweb`:\n\n    sudo ln -s `pwd`/site /var/www/html/ccgweb\n\nTo create a config file:\n\n    cp site/inc/config.inc.php.sample site/inc/config.inc.php\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftexttheater%2Fccgweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftexttheater%2Fccgweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftexttheater%2Fccgweb/lists"}