Skip to content

0xPolygonID/docs

Repository files navigation




Polygon ID Documentation is the documentation hub providing extensive documentation, community resources, and guides for enthusiasts and developers interested in learning about or building solutions using Polygon ID.

The Polygon ID Documentation website is built using Docusaurus, a modern static website generator to build optimized websites quickly.

Contribute to Polygon ID Documentation

Requirements

Note that on macOS, you also need Xcode and Command Line Tools.

Run the docs locally

  1. Fork the repo.

    For help, refer to GitHub Docs: Fork a repo.

  2. Clone your forked repo.

    git clone git@github.com:[your_github_handle]/docs
    
  3. Navigate into the cloned folder.

    cd docs
    
  4. Link your cloned repo to the upstream repo.

    For help, see GitHub Docs: Configuring a remote for a fork.

    git remote add upstream https://github.com/0xPolygonID/docs
    
  5. If you have already cloned the repository, be sure to sync your fork with the latest changes.

    For help, refer to GitHub Docs: Syncing a fork.

    git checkout master
    git fetch upstream
    git merge upstream/main
    
  6. Install the dependencies.

    npm install
    

    The site is built using Docusaurus. You may need to install Docusaurus before running the docs locally.

    npm add docusaurus
    
  7. Run the docs locally. The following command will start a local development server and open a browser window. Most changes are reflected live without having to restart the server.

    npm run start
    

Make changes using Git GUI and code editor

After running the docs locally on your machine, use a code editor to apply your changes before submitting your PR. Note that you must have a GitHub account and an understanding of Markdown syntax.

  1. Create a new branch for your changes.

    git checkout -b [new_branch_name]
    
  2. Commit your changes. In the commit message, please reference the issue it resolves. For help, see GitHub Docs: Linking a pull request to an issue using a keyword.

    git commit -m "brief description of changes"
    
  3. Push to your forked repository.

    git push
    
  4. Submit a PR against the main branch of the 0xPolygonID/docs repo.

  5. Add a title to your PR with appropriate labels.

    For example, if you want to suggest edits to the "Develop" page, name your PR: update: develop.md.

  6. Add a description to your PR. Please reference the issue it resolves.

    For help, see GitHub Docs: Linking a pull request to an issue using a keyword.

  7. Write a brief description of the changes you have made. If possible, include screenshots and references.

You can apply UI changes, sidebar, and configuration design through the following files:

  • To modify the Sidebar navigation, edit sidebars.js
  • To modify the website page layout, edit docusaurus.config.js
  • To modify the blocks structure and the footer links, edit src/pages/index.js

Making changes using the Polygon Id docs website

You can easily submit an edit suggestion. Note that you must have a GitHub account and good knowledge of Markdown syntax.

  1. Navigate to the Polygon ID Documentation page that you want to edit.

  2. Scroll down until the end of that page.

  3. Click on the link: Edit this page. It will forward you to the same page (Markdown format) hosted on GitHub.

  4. On the related GitHub page, click the pencil icon (similar to ✎) near the upper right corner of the file.

  5. Apply your edits by modifying the Markdown file.

  6. After you finish, scroll down until the end of that page to create a pull request.

  7. Add a title to your PR.

  8. Add a description to your PR. Please reference the issue it resolves.

    For help, see GitHub Docs: Linking a pull request to an issue using a keyword.

  9. Write a brief description of the changes you have made. If possible, include screenshots and references.

  10. Click on the green button Propose changes to submit your changes. Note that submitting a change will write it to a new branch in your fork.

One of the docs maintainers will review your PR and either accept it or submit their review.

Acceptable PRs will be approved & merged into the main branch.

Submit an Issue

  • Create a new issue to report a bug, request a feature, or suggest changes.

  • Comment on the issue if you want to be assigned to it so our team can assign the issue to you.

  • If you do not have a specific contribution in mind, you can also browse current issues.

  • Issues that additionally have the good first issue label are considered ideal for first-timers.

Build

This command generates static content into the build directory and can be served using any static content hosting service:

npm run build

Image Maintenance

To enhance the flexibility of centering and sizing images within our markdown files, we often utilize HTML. However, this approach complicates image maintenance. We provide two scripts to facilitate the management of images in our projects.

Finding Unused Images

This utility script assists in identifying static images that are no longer referenced within our documentation. To leverage this script, execute the following command from the project's root directory:

node scripts/find-unused-images.js

Identifying Broken Image Links

This script is designed to locate references to images within our documentation that lack corresponding files in the static folder. To use this script, run the following command from the project's root directory:

node scripts/find-broken-image-links.js

Deployment

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.

GIT_USER=[your_github_handle] USE_SSH=true npm run deploy

Caching

Deployments leverage GitHub caching to improve build times. Currently, 3 levels of caching are implemented:

  • .docusaurus: caches the site structure. The build process will update this as needed
  • build: caches the static assets to avoid regenerating any pages that have not changed
  • node_modules: caches node_modules based on the hash of package-lock.json. Any changes to package dependencies will invalidate and rebuild this cache

Current cache config is defined in master_deployment.yml. Caches can be viewed or invalidated in the GitHub repo settings.

About

No description, website, or topics provided.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages