-
Notifications
You must be signed in to change notification settings - Fork 3
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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.
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>
670f346
to
5635f10
Compare
Commenting just another task to be done in this PR: need to check the new configuration of docusaurus for the "current" version docs (probably |
docusaurus/docusaurus.config.js
Outdated
// 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/', |
There was a problem hiding this comment.
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?
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>
Done |
There was a problem hiding this comment.
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 config
directory.
|
||
- name: Run Docusaurus test | ||
id: build | ||
run: yarn test > build.log 2>&1 || echo "FAILED" > .docusaurus_failed |
There was a problem hiding this comment.
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
- 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" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove
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 |
There was a problem hiding this comment.
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
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 |
There was a problem hiding this comment.
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
*) | ||
shift | ||
;; |
There was a problem hiding this comment.
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}" |
There was a problem hiding this comment.
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/||') |
There was a problem hiding this comment.
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/||") |
There was a problem hiding this comment.
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/||") |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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
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
docusaurus/blog/
as discussed in Slack, and as the existing text is not relevant to the project, it has been removed.docusaurus/README.md
as it is already present information duplicated with another files likedocs/howtos/documentation_development.md
.docusaurus/package-lock.json
as the local development should be done withyarn
.HomepageFeatures
components as was only being imported and not used.Added
docusaurus/docs/howtos/documentation_development.md
as to give instructions on how to develop documentation.docusaurus/docker.package.json
to include the dependencies needed to build the containers.Updated
docusaurus/.dockerignore
refenrencing the the other JS modules that are not needed when building the container.docusaurus/package.json
to include the latest versions of the dependencies.docusaurus/Dockerfile
the the new instructions to build the containers of Development and Production.index.js
to include the new components and remove the unused ones.Test Plan
Basic Docusaurus build tests
Additional Information
Security Considerations
Meeting scheduled to 27/03/2025.