Skip to content

Move apoc extended to separate playbook #106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions labs-apoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
site:
title: Neo4j Labs Docs
url: /labs/docs

content:
sources:
- url: https://github.com/neo4j-contrib/neo4j-apoc-procedures
branches: ['5.16', '4.4', '4.3', '4.2', '4.1', '4.0']
start_path: docs/asciidoc

output:
dir: ./build/site/labs/

ui:
bundle:
url: https://d12wh7zj8x3amw.cloudfront.net/build/ui-bundle-latest.zip
snapshot: true

urls:
html_extension_style: indexify

asciidoc:
extensions:
- "@neo4j-antora/antora-add-notes"
- ./extensions/remote-include/remote-include-processor
- ./extensions/macros/macros
attributes:
experimental: ''
page-cdn: /static/assets
page-theme: labs
page-mixpanel: 4bfb2414ab973c741b6f067bf06d5575
page-add-notes-module: notes@
page-add-notes-tags: core-warning@
page-add-notes-versions: ['5']
6 changes: 3 additions & 3 deletions labs-docs.yml
Original file line number Diff line number Diff line change
@@ -7,9 +7,9 @@ content:
- url: https://github.com/neo4j-contrib/neo4j-helm.git
branches: ['master']
start_path: doc/docs
- url: https://github.com/neo4j-contrib/neo4j-apoc-procedures
branches: ['5.16', '4.4', '4.3', '4.2', '4.1', '4.0']
start_path: docs/asciidoc
# - url: https://github.com/neo4j-contrib/neo4j-apoc-procedures
# branches: ['5.16', '4.4', '4.3', '4.2', '4.1', '4.0']
# start_path: docs/asciidoc
- url: https://github.com/neo4j-labs/neosemantics
branches: ['5.14','4.3', '4.2', '4.1', '4.0']
start_path: docs
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -12,13 +12,14 @@
"start": "node server.js",
"build": "npm run build:preview",
"build:preview": "npm run preview:developer && npm run preview:labs && npm run preview:kb && npm run preview:graphgist && npm run preview:usecases",
"preview:developer": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip developer.yml",
"preview:labs": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip labs-docs.yml",
"preview:kb": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip kb.yml",
"preview:usecases": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip use-cases.yml",
"preview:training": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip training.yml",
"preview:graphgist": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip graphgist.yml",
"build:production": "npm run production:labs && npm run production:labs-landing && npm run production:kb && npm run production:graphgist && npm run production:usecases",
"preview:developer": "antora --fetch --stacktrace --ui-bundle-url https://static-content.neo4j.com/build/ui-bundle.zip developer.yml",
"preview:labs": "antora --fetch --stacktrace --ui-bundle-url https://static-content.neo4j.com/build/ui-bundle.zip labs-docs.yml",
"preview:kb": "antora --fetch --stacktrace --ui-bundle-url https://static-content.neo4j.com/build/ui-bundle.zip kb.yml",
"preview:usecases": "antora --fetch --stacktrace --ui-bundle-url https://static-content.neo4j.com/build/ui-bundle.zip use-cases.yml",
"preview:training": "antora --fetch --stacktrace --ui-bundle-url https://static-content.neo4j.com/build/ui-bundle.zip training.yml",
"preview:graphgist": "antora --fetch --stacktrace --ui-bundle-url https://static-content.neo4j.com/build/ui-bundle.zip graphgist.yml",
"build:production": "npm run production:apoc && npm run production:labs && npm run production:labs-landing && npm run production:kb && npm run production:graphgist && npm run production:usecases",
"production:apoc": "antora --fetch --stacktrace labs-apoc.yml",
"production:developer": "antora --fetch --stacktrace developer.yml",
"production:labs": "antora --fetch --stacktrace labs-docs.yml",
"production:labs-landing": "antora --fetch --stacktrace labs.yml ",
@@ -39,6 +40,7 @@
"@antora/cli": "~3.1",
"@antora/site-generator-default": "~3.1",
"@antora/xref-validator": "gitlab:antora/xref-validator",
"@neo4j-antora/antora-add-notes": "^0.3.1",
"@neo4j-documentation/antora-graphgist-extension": "github:neo4j-documentation/antora-graphgist-extension",
"@neo4j-documentation/antora-knowledge-base-extension": "github:neo4j-documentation/antora-knowledge-base-extension",
"@neo4j-documentation/antora-training-extension": "github:neo4j-documentation/antora-training-extension",