This is both the front- and backend for the XCF-Web-Application.
The actual XCF itself is contained in the xcf
Git repository and
provides necessary helper files.
To run the application you can either use the provided config.default.xml
or create your own config file config.xml
. You can copy the default config and take it as base for your customized configuration:
cp backend/app/config.default.xml backend/app/config.xml
or on Windows OS:
copy backend\app\config.default.xml backend\app\config.xml
By default:
config.default.xml
is used and no further steps are required.
Applications can be run from arbitrary URLs, local installations are possible.
Just point the engine and rules to a local folder. Please use absolute paths or even better
file://
-URLs.
<config>
<xcf-engine>https://subtitling.irt.de/xcf_sample/engine/</xcf-engine>
<xcf-rules>https://subtitling.irt.de/xcf_sample/rules/</xcf-rules>
</config>
Make sure your engine
& rules
-folders contain at least the following files:
├── engine
│ └── reportview.xsl
└── rules
├── constraints.xml
├── rules_compiled.xsl
└── rules_config.xml
For more information on what these files do, please refer to:
In short:
rules_compiled.xsl
contains a transformation that performs the actual checkingconstraints.xml
contains detailed information for a given error, that will be added to the reportreportview.xsl
is used to convert a report a more user friendly formatrules_config.xml
can be used to configure which checkboxes in the web-fronted are initially checked
For development start the frontend dev server:
cd frontend && yarn && yarn serve
alongside the basexhttp
-backend:
cd backend/app && bin/basexhttp
On Windows OS:
cd backend\app && bin\basexhttp
The frontend will be served at localhost:8080 and requests to the BaseX HTTP backend will be proxied automatically by webpack.
# Build the frontend
cd frontend && npm -s install && npm run build && cd ..
docker build -t xcf-check . && docker run -p 80:8984 xcf-check
The web frontend is offered by BaseX GmbH and licensed under the MIT license.