├── .gitignore ├── .gitmodules ├── Dockerfile ├── Makefile ├── README.md ├── accelerated-text-screenshot.png ├── api └── resources │ ├── config │ └── enrich.edn │ ├── dictionary │ └── e2e-eng.edn │ └── document-plans │ ├── BJLUYVJbhCErSvpW.json │ ├── BjelHkEwHnxXtAex.json │ ├── DsTcClNrrrODcDSr.json │ ├── FaIyVyrNpDgJXDaS.json │ ├── FzGmagflfRWGeURd.json │ ├── HhaisKmXEJBzueYq.json │ ├── JQFDtsQiWPlDwHMV.json │ ├── JwOhVjKoXgRnaGjn.json │ ├── JxhodTfGyVxcVPtG.json │ ├── LfUbFlhqxRtZHrhY.json │ ├── MLPOdPfRgfwINGPj.json │ ├── NexuGhMENtBpsfaq.json │ ├── NiMQlZJtzgrzGGiK.json │ ├── PwFzDJgMRHdOlvgq.json │ ├── SPtZlrjdjjzqYnPz.json │ ├── TEjxfLFcxYqNPWIG.json │ ├── TXFAAaOVstvGiyif.json │ ├── UVryAmzoAIvJwmCd.json │ ├── ZvDGMoADoIEsUfTV.json │ ├── cNxEsFRxdHZmFfKT.json │ ├── cwWyuCHyDQXYqSSt.json │ ├── fVchtudGKckEdFud.json │ ├── iABScBOnjtLhJOKR.json │ ├── leJaKYLzxEtNLkDm.json │ ├── mLzeFdaEixkeKxCH.json │ ├── mrDvgnftTziSqGyl.json │ ├── nCftyFWvOXGIDlZO.json │ ├── nUfKLthfqaMKnibj.json │ ├── nedwukrmegjAOBTX.json │ ├── pSAnTsFZYYMEfoKs.json │ ├── pVqkwvCizkJsJcXJ.json │ ├── rlTnoTVoELQNiQjW.json │ ├── tcjoYISlKkjdXhjU.json │ ├── vsqYQzbYQfOGaQtU.json │ ├── wvJYxoxvppqmvesj.json │ ├── xnEbPoxNSldcLzNI.json │ ├── yKEGqxGCCYZKIWXp.json │ ├── yKXnBRVqCLSpYYTE.json │ └── yLNcSXyZotzpXHHT.json ├── data ├── authors-books.csv ├── document-plans │ ├── Books.json │ ├── authorshipAMR.json │ └── ownershipRGL.json ├── flipcart-dresses.csv └── pants.csv ├── docker-compose.yml └── registerPlugins.override.js /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .init 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/README.md -------------------------------------------------------------------------------- /accelerated-text-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/accelerated-text-screenshot.png -------------------------------------------------------------------------------- /api/resources/config/enrich.edn: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /api/resources/dictionary/e2e-eng.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/dictionary/e2e-eng.edn -------------------------------------------------------------------------------- /api/resources/document-plans/BJLUYVJbhCErSvpW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/BJLUYVJbhCErSvpW.json -------------------------------------------------------------------------------- /api/resources/document-plans/BjelHkEwHnxXtAex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/BjelHkEwHnxXtAex.json -------------------------------------------------------------------------------- /api/resources/document-plans/DsTcClNrrrODcDSr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/DsTcClNrrrODcDSr.json -------------------------------------------------------------------------------- /api/resources/document-plans/FaIyVyrNpDgJXDaS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/FaIyVyrNpDgJXDaS.json -------------------------------------------------------------------------------- /api/resources/document-plans/FzGmagflfRWGeURd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/FzGmagflfRWGeURd.json -------------------------------------------------------------------------------- /api/resources/document-plans/HhaisKmXEJBzueYq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/HhaisKmXEJBzueYq.json -------------------------------------------------------------------------------- /api/resources/document-plans/JQFDtsQiWPlDwHMV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/JQFDtsQiWPlDwHMV.json -------------------------------------------------------------------------------- /api/resources/document-plans/JwOhVjKoXgRnaGjn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/JwOhVjKoXgRnaGjn.json -------------------------------------------------------------------------------- /api/resources/document-plans/JxhodTfGyVxcVPtG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/JxhodTfGyVxcVPtG.json -------------------------------------------------------------------------------- /api/resources/document-plans/LfUbFlhqxRtZHrhY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/LfUbFlhqxRtZHrhY.json -------------------------------------------------------------------------------- /api/resources/document-plans/MLPOdPfRgfwINGPj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/MLPOdPfRgfwINGPj.json -------------------------------------------------------------------------------- /api/resources/document-plans/NexuGhMENtBpsfaq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/NexuGhMENtBpsfaq.json -------------------------------------------------------------------------------- /api/resources/document-plans/NiMQlZJtzgrzGGiK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/NiMQlZJtzgrzGGiK.json -------------------------------------------------------------------------------- /api/resources/document-plans/PwFzDJgMRHdOlvgq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/PwFzDJgMRHdOlvgq.json -------------------------------------------------------------------------------- /api/resources/document-plans/SPtZlrjdjjzqYnPz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/SPtZlrjdjjzqYnPz.json -------------------------------------------------------------------------------- /api/resources/document-plans/TEjxfLFcxYqNPWIG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/TEjxfLFcxYqNPWIG.json -------------------------------------------------------------------------------- /api/resources/document-plans/TXFAAaOVstvGiyif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/TXFAAaOVstvGiyif.json -------------------------------------------------------------------------------- /api/resources/document-plans/UVryAmzoAIvJwmCd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/UVryAmzoAIvJwmCd.json -------------------------------------------------------------------------------- /api/resources/document-plans/ZvDGMoADoIEsUfTV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/ZvDGMoADoIEsUfTV.json -------------------------------------------------------------------------------- /api/resources/document-plans/cNxEsFRxdHZmFfKT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/cNxEsFRxdHZmFfKT.json -------------------------------------------------------------------------------- /api/resources/document-plans/cwWyuCHyDQXYqSSt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/cwWyuCHyDQXYqSSt.json -------------------------------------------------------------------------------- /api/resources/document-plans/fVchtudGKckEdFud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/fVchtudGKckEdFud.json -------------------------------------------------------------------------------- /api/resources/document-plans/iABScBOnjtLhJOKR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/iABScBOnjtLhJOKR.json -------------------------------------------------------------------------------- /api/resources/document-plans/leJaKYLzxEtNLkDm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/leJaKYLzxEtNLkDm.json -------------------------------------------------------------------------------- /api/resources/document-plans/mLzeFdaEixkeKxCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/mLzeFdaEixkeKxCH.json -------------------------------------------------------------------------------- /api/resources/document-plans/mrDvgnftTziSqGyl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/mrDvgnftTziSqGyl.json -------------------------------------------------------------------------------- /api/resources/document-plans/nCftyFWvOXGIDlZO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/nCftyFWvOXGIDlZO.json -------------------------------------------------------------------------------- /api/resources/document-plans/nUfKLthfqaMKnibj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/nUfKLthfqaMKnibj.json -------------------------------------------------------------------------------- /api/resources/document-plans/nedwukrmegjAOBTX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/nedwukrmegjAOBTX.json -------------------------------------------------------------------------------- /api/resources/document-plans/pSAnTsFZYYMEfoKs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/pSAnTsFZYYMEfoKs.json -------------------------------------------------------------------------------- /api/resources/document-plans/pVqkwvCizkJsJcXJ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/pVqkwvCizkJsJcXJ.json -------------------------------------------------------------------------------- /api/resources/document-plans/rlTnoTVoELQNiQjW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/rlTnoTVoELQNiQjW.json -------------------------------------------------------------------------------- /api/resources/document-plans/tcjoYISlKkjdXhjU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/tcjoYISlKkjdXhjU.json -------------------------------------------------------------------------------- /api/resources/document-plans/vsqYQzbYQfOGaQtU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/vsqYQzbYQfOGaQtU.json -------------------------------------------------------------------------------- /api/resources/document-plans/wvJYxoxvppqmvesj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/wvJYxoxvppqmvesj.json -------------------------------------------------------------------------------- /api/resources/document-plans/xnEbPoxNSldcLzNI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/xnEbPoxNSldcLzNI.json -------------------------------------------------------------------------------- /api/resources/document-plans/yKEGqxGCCYZKIWXp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/yKEGqxGCCYZKIWXp.json -------------------------------------------------------------------------------- /api/resources/document-plans/yKXnBRVqCLSpYYTE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/yKXnBRVqCLSpYYTE.json -------------------------------------------------------------------------------- /api/resources/document-plans/yLNcSXyZotzpXHHT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/api/resources/document-plans/yLNcSXyZotzpXHHT.json -------------------------------------------------------------------------------- /data/authors-books.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/data/authors-books.csv -------------------------------------------------------------------------------- /data/document-plans/Books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/data/document-plans/Books.json -------------------------------------------------------------------------------- /data/document-plans/authorshipAMR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/data/document-plans/authorshipAMR.json -------------------------------------------------------------------------------- /data/document-plans/ownershipRGL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/data/document-plans/ownershipRGL.json -------------------------------------------------------------------------------- /data/flipcart-dresses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/data/flipcart-dresses.csv -------------------------------------------------------------------------------- /data/pants.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/data/pants.csv -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /registerPlugins.override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accelerated-text/reaction-acc-text-demo/HEAD/registerPlugins.override.js --------------------------------------------------------------------------------