To use this UI with Antora, add the following configuration to your playbook file:
ui:
bundle:
url: https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle-v0.4.0.zip
ℹ️
|
If you want to use the latest version (unreleased) you can use the following URL: https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip .
|
You can run a local server to preview the UI by running:
npm start
This will launch a server at http://localhost:5252.
💡
|
You can configure the port using the environment variable PORT=3000 npm start |
The release process is automated and relies on GitHub Actions.
See the .github/workflows/release.yml
file for details.
The release will be performed when a tag is pushed, the procedure is:
-
Tag and push to
master
(don’t forget thev
prefix and replacex.y.z
with an actual version):$ git tag vx.y.z && git push origin master --tags
The UI bundle will be published to S3 and available shortly at: https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle-vx.y.z.zip
The UI bundle and docs pages are shipped/built separately. You don’t have to rebuild docs projects for them to take the updated UI bundle, but you do need to run the TC build located at documentation / UI / Publish UI
for the latest tag of the UI bundle to be deployed.