Go to file
Marek Horst e98b98ab71 Closes #52: Improvement required for the "Extraction of cited concepts" Graph documentation page
Renaming title to "Extraction of referenced concepts".

Introducing the first batch of improvements related to "algorithmic details":
* describing “target database” for (a) the datasets, and (b) software
* the result of the process on the OpenAIRE Research Graph content
2023-06-29 14:47:57 +02:00
blog initial commit 2022-09-01 10:26:04 +03:00
docs Closes #52: Improvement required for the "Extraction of cited concepts" Graph documentation page 2023-06-29 14:47:57 +02:00
src Change footer 2022-12-20 15:20:50 +02:00
static Update graph name, logo, and badges 2023-02-23 13:50:36 +02:00
versioned_docs Add new doc & sidebar files 2023-06-13 17:02:29 +03:00
versioned_sidebars Add new doc & sidebar files 2023-06-13 17:02:29 +03:00
.env Fix links from impact measures page to specific properties/objects in the result 2022-12-27 21:22:30 +02:00
.gitignore ignore intellij project file 2022-11-23 14:33:34 +01:00
Dockerfile Add deployment with docker 2022-10-13 20:52:52 +03:00
README.md Update 'README.md' 2023-04-19 14:39:27 +02:00
babel.config.js initial commit 2022-09-01 10:26:04 +03:00
docusaurus.config.js Update graph name, logo, and badges 2023-02-23 13:50:36 +02:00
package-lock.json added new relationships 2022-12-27 12:51:52 +01:00
package.json added new relationships 2022-12-27 12:51:52 +01:00
release.properties Update 'release.properties' 2022-12-20 15:16:23 +01:00
sidebars.js Hide link to OpenenPlato 2023-06-05 17:41:15 +03:00
versions.json Add changelog entry for v5.1.3 2023-06-13 16:58:02 +03:00

README.md

OpenAIRE Graph Documentation

This website is built using Docusaurus 2; please check here the requirements to run the project.

Local installation and development

From https://docusaurus.io/docs/installation#requirements

Node.js version 16.14 or above (which can be checked by running node -v)

Clone the repository:

git clone https://code-repo.d4science.org/D-Net/openaire-graph-docs.git

NOTE: please use git branches for introducing new changes.

Install the required packages:

npm install

Start a local development server (opens in a new browser window).

npm run start

NOTE: most changes are reflected live without having to restart the server.

Before issuing a Pull Request, please ensure that the following command runs successfully:

npm run build

NOTE: This command generates the static content into the build directory. Then this output directory is issued to deploy the documentation website.

Deployment using Docker

Development

Build docker container for development and run on port 3000:

docker build --target development -t docs:dev .
sudo docker run -d -p 3000:3000 docs:dev

Production

Build docker container for production and run on port 80:

docker build -t docs:latest .
docker run -d -p 80:80 docs:latest

Documentation versioning

The versioning documentation of Docusaurus can be found here. Specifically, a new version can be created with the following command:

npm run docusaurus docs:version <versionName>

When tagging a new version, the document versioning mechanism will:

  • Copy the full docs/ folder contents into a new versioned_docs/version-<versionName>/ folder.
  • Create a versioned sidebars file based from your current sidebar configuration, saved as versioned_sidebars/version-<versionName>-sidebars.json.
  • Append the new version number to versions.json.

Therefore, when previewing the compiled site locally with npm run start, ensure to visualise the Next version on the browser as it shows the changes under /docs. To change a version that was already versioned, the source files to be modified are in the versioned_docs/version-<versionName>/ folder.