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: create workflow for generating previews and publishing docs using fern #1500

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

Conversation

dslovinsky
Copy link
Collaborator

@dslovinsky dslovinsky commented Mar 31, 2025

See this readme to understand how to make docs changes using this process.

This PR does a few things to integrate Account Kit into the new docs using Fern:

  • Duplicates the docs-gen package and its command as fern-gen which includes Fern-specific syntax.
  • Creates a new directory at docs which is essentially a copy of site but only including files necessary for Fern (markdown, images, etc). All vocs-related files are removed.
  • The docs directory ONLY includes one example markdown page for now. The rest will be migrated once the content freeze begins.
  • The docs.yml file determines nav structure. It is injected into Fern's docs.yml in the preview and publish GitHub workflows.
    • For now sidebar nav is not generated as doing so with Fern will be more complex. However it should be possible as a post-launch task.

Pull Request Checklist


PR-Codex overview

This PR primarily introduces updates to the documentation and configuration for the Account Kit project. It enhances the documentation structure, adds new icons, and integrates with the Fern CLI for generating documentation.

Detailed summary

  • Added multiple images to docs/images/.
  • Introduced DotsIcon, ClockForwardIcon, ExpoIcon, SignerIcon, ReactNativeIcon, InfraIcon, and SmartContractIcon components.
  • Updated package.json files for various packages to include fern:gen commands.
  • Added fern-gen configuration files for TypeScript and documentation generation.
  • Enhanced README.md and index.mdx with detailed instructions for documentation updates.
  • Implemented GitHub Actions workflows for publishing and previewing documentation.
  • Created a shell script for moving images and updating documentation structure.

The following files were skipped due to too many changes: fern-gen/yarn.lock

✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}

Copy link

vercel bot commented Mar 31, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
aa-sdk-site ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 2, 2025 9:48pm
aa-sdk-ui-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 2, 2025 9:48pm

Copy link

graphite-app bot commented Mar 31, 2025

How to use the Graphite Merge Queue

Add the label graphite-merge-queue to this PR to add it to the merge queue.

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

This comment was marked as duplicate.

This comment was marked as duplicate.

Copy link

github-actions bot commented Apr 2, 2025

🌿 Documentation Preview

Name Preview Updated (UTC)
Alchemy Docs 🔗 Visit Preview Apr 2, 2025, 9:45 PM

"import/extensions": ["off", "ignorePackages"]
"rules": {
"import/extensions": ["off", "ignorePackages"],
"react/jsx-no-undef": "off"
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Fern components are imported automatically. So this rule was incorrectly throwing errors everywhere

- name: Download Alchemy Docs Repo
run: |
rm -rf docs-site && \
curl -L -f -H "Authorization: token ${{ secrets.DOCS_GITHUB_TOKEN }}" \
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

This is a classic GitHub Token I supplied to allow us to access the currently private docs repo. We should remove it once the docs are made public.

@@ -38,6 +38,7 @@
"build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm",
"build:types": "tsc --project tsconfig.build.json --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"docs:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../site/pages/reference/aa-sdk/core",
"fern:gen": "node ../../fern-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../docs/pages/reference/aa-sdk/core",
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Once we deprecate the vocs site I'd prefer we rename this docs:gen.

Comment on lines +21 to +32
<CardGroup cols={2}>
<Card title="Quickstart" href="/react/quickstart" icon="forward">
Start building in minutes with UI components and powerful React hooks.
</Card>
<Card
title="Try the Demo"
href="https://demo.alchemy.com/"
icon="bullseye-pointer"
>
Customize React components, export your config, and start building.
</Card>
</CardGroup>
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

These are Fern components

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

This script will be used on docs repo as well

@dslovinsky dslovinsky marked this pull request as ready for review April 2, 2025 21:52
@dslovinsky dslovinsky changed the title feat: create workflow for generating preview docs using fern feat: create workflow for generating previews and publishing docs using fern Apr 2, 2025
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.

1 participant