Skip to content
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

feat(docussaurus): upgrade Docussaurus and document development procedures #11

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

see7e
Copy link
Contributor

@see7e see7e commented Mar 22, 2025

Changes Summary

This PR refers to #9.
The first commit was a cherry-pick from the same commit (03377f6) made by Conrado. The other changes are listed below.

Removed

  • No need for docusaurus/blog/ as discussed in Slack, and as the existing text is not relevant to the project, it has been removed.
  • Removed docusaurus/README.md as it is already present information duplicated with another files like docs/howtos/documentation_development.md.
  • Removed docusaurus/package-lock.json as the local development should be done with yarn.
  • Removed unused static files.
  • Remove HomepageFeatures components as was only being imported and not used.

Added

  • Added docusaurus/docs/howtos/documentation_development.md as to give instructions on how to develop documentation.
  • Added docusaurus/docker.package.json to include the dependencies needed to build the containers.

Updated

  • Improved docusaurus/.dockerignore refenrencing the the other JS modules that are not needed when building the container.
  • Updated docusaurus/package.json to include the latest versions of the dependencies.
  • Included at docusaurus/Dockerfile the the new instructions to build the containers of Development and Production.
  • Improved index.js to include the new components and remove the unused ones.

Test Plan

Basic Docusaurus build tests

Additional Information

  • This change is backwards-breaking

Security Considerations

Meeting scheduled to 27/03/2025.

Copy link
Collaborator

@lucaaamaral lucaaamaral left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The only thing I see necessary to restore the removed copyright and remove the CHANGELOG. Everything else seems ok.

@lucaaamaral lucaaamaral changed the title Chore: Review configurations, static files and folder structure feat(docussaurus): upgrade Docussaurus and document development procedures Mar 23, 2025
@lucaaamaral lucaaamaral linked an issue Mar 23, 2025 that may be closed by this pull request
@see7e see7e requested a review from lucaaamaral March 24, 2025 18:37
see7e added 5 commits March 25, 2025 11:01
Changing the docusaurus version from costum to the standart open source release

Signed-off-by: conradogobato <conradogob07@gmail.com>
…updating dependencies and configurations

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>
…mepage layout and styles

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>
Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>
Remove CHANGELOG and NOTES files, clean up Dockerfile and docker-compose, and update docusaurus configuration

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>
@lucaaamaral lucaaamaral force-pushed the chore/evaluate-conrado-pr branch from 670f346 to 5635f10 Compare March 25, 2025 14:01
@see7e
Copy link
Contributor Author

see7e commented Mar 28, 2025

Commenting just another task to be done in this PR: need to check the new configuration of docusaurus for the "current" version docs (probably readmes will have to be renamed)

Comment on lines 41 to 44
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we have this 'edit this page' pointing to this repository?

@lucaaamaral
Copy link
Collaborator

Let's bring CI here to be able to merge. I saw you have them done already.

* chore: enhance CI workflows with new scripts for documentation checks and remove obsolete reference check

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* chore: update documentation CI workflow for improved checks and formatting

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* debug: Run everything for testing

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* testing: path filter step dependency removal

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* fix: grant execute permissions to workflow scripts for consistency checks

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* fix: update workflow scripts for improved debugging and path handling

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* fix: Convert format to standad POSIX and streamline with dos2unix dependency and consolidating permission grants

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

* fix: Update workflow scripts to change directory for dependency installation and improve script execution consistency

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>

---------

Signed-off-by: Gabryel Nóbrega <gabryelster@gmail.com>
@see7e
Copy link
Contributor Author

see7e commented Apr 3, 2025

Let's bring CI here to be able to merge. I saw you have them done already.

Done

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename to markdown_lint.json. Lint is a check, and it is on configdirectory.


- name: Run Docusaurus test
id: build
run: yarn test > build.log 2>&1 || echo "FAILED" > .docusaurus_failed
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove > build.log 2>&1 || echo "FAILED" > .docusaurus_failed

Comment on lines +43 to +52
- name: Upload build log
uses: actions/upload-artifact@v4
with:
name: docusaurus-build-log
path: build.log

- name: Save failure flag
if: failure()
run: echo "Docusaurus build failed"

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove

Comment on lines +63 to +79
translation-consistency:
name: Translation Consistency Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dos2unix dependency
run: sudo apt-get update && sudo apt-get install -y dos2unix
- name: Grant execute permissions and convert script file
run: |
chmod +x ./.github/workflows/scripts/check_translations.sh
dos2unix ./.github/workflows/scripts/check_translations.sh
- name: Check Translation Consistency
run: |
./.github/workflows/scripts/check_translations.sh --debug
shell: bash
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix line termination character and remove dos2unix

Comment on lines +81 to +94
id-filename-sync:
name: Docusaurus ID & Filename Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dos2unix dependency
run: sudo apt-get update && sudo apt-get install -y dos2unix
- name: Grant execute permissions to scripts and convert script file
run: |
chmod +x ./.github/workflows/scripts/check_id_matches_filename.sh
dos2unix ./.github/workflows/scripts/check_id_matches_filename.sh
- name: Check ID matches filename
run: |
./.github/workflows/scripts/check_id_matches_filename.sh --debug
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix line termination character and remove dos2unix

Comment on lines +15 to +17
*)
shift
;;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Throw error if not found

cd docusaurus/docs
MODIFIED_DOCS=$(find . -type f \( -name "*.md" -o -name "*.mdx" \) ! -path "versioned_docs/*")
else
BASE_REF="${GITHUB_BASE_REF:-origin/main}"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Set the variables that may be changed based on input at the beginning of the script so it is easy to spot and understand.

continue
fi

REL_PATH=$(echo "$file" | sed 's|^docs/||')
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the purpose is to concatenate, you might just want to make REL_PATH=docs/$file

fi

if [ -n "$found_id" ] && [ "$found_id" != "$expected_id" ]; then
rel_path=$(echo "$file" | sed "s|^$DOCS_DIR/||")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try to keep variable naming convention as all upper case. Also, if you want to concatenate, just make REL_PATH=$DOCS_DIR/$FILE

found_id=$(grep -E '^id: ' "$file" | head -n 1 | cut -d ' ' -f2-)

if [ "$DEBUG_MODE" = "true" ]; then
rel_path=$(echo "$file" | sed "s|^$DOCS_DIR/||")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Try to keep variable naming convention as all upper case. Also, if you want to concatenate, just make REL_PATH=$DOCS_DIR/$FILE

CHECKED_FILES=$((CHECKED_FILES + 1))

filename=$(basename "$file")
expected_id=$(echo "$filename" | sed 's/\.[^.]*$//') # Remove extension
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use that to remove the extention: expected_id=$(basename "$file" .txt)

https://stackoverflow.com/questions/3362920/get-just-the-filename-from-a-path-in-a-bash-script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

chore: evaluate and port Conrado's PR
2 participants