{"id":19236840,"url":"https://github.com/crunchydata/crunchy-docs","last_synced_at":"2026-01-23T07:06:57.370Z","repository":{"id":177306021,"uuid":"650678611","full_name":"CrunchyData/crunchy-docs","owner":"CrunchyData","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-15T20:55:38.000Z","size":9618,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-05-15T21:46:33.516Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CrunchyData.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-06-07T15:14:39.000Z","updated_at":"2025-05-15T20:55:43.000Z","dependencies_parsed_at":"2023-11-21T22:24:27.953Z","dependency_job_id":"cb88b98d-b269-4623-bb05-28cdc8a73718","html_url":"https://github.com/CrunchyData/crunchy-docs","commit_stats":null,"previous_names":["crunchydata/crunchy-docs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CrunchyData/crunchy-docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrunchyData%2Fcrunchy-docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrunchyData%2Fcrunchy-docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrunchyData%2Fcrunchy-docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrunchyData%2Fcrunchy-docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CrunchyData","download_url":"https://codeload.github.com/CrunchyData/crunchy-docs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CrunchyData%2Fcrunchy-docs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28682304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T16:23:37.339Z","updated_at":"2026-01-23T07:06:57.353Z","avatar_url":"https://github.com/CrunchyData.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crunchy Documentation\n\nThis repository contains the source for the [Crunchy's public documentation](https://docs.crunchybridge.com/). It is built with [Remix](https://remix.run/).\n\n| If you do not have any experience working with node and the npm package manager please refer to the instructions found here: [Setup from scratch](#setup-from-scratch)\n\n## Install Dependencies:\n\n```bash\n# Setup correct versions\nasdf install\n\n# Install node dependencies\nnpm i\n\n# Copy environment variables\ncp .env.example .env\n```\n\n## Start development server\n\nThis will allow you to preview the docs real-time on your local machine.\n\n```bash\nnpm run dev\n```\n\nOpen: [https://localhost:3000](https://localhost:3000)\n\n### Editor Recommendations\n\nIt's recommended to use the [vscode](https://code.visualstudio.com/) code editor (or similar) in order to install plugins that make code contribution to this codebase a much smoother process.\n\nCurrently, the following plugins are recommended for improving the development experience:\n\n| Plugin | Description |\n| --- | --- |\n| [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) | Read our `.prettierrc` and format or save files to match |\n| [MDX](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx) | Allows better highlighting and formatting for `.mdx` files. |\n| [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | A basic spell checker that works well with camelCase code |\n| [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) | Integrates ESLint into VS Code |\n| [Pretty TS Errors](https://marketplace.visualstudio.com/items?itemName=yoavbls.pretty-ts-errors) | This takes the error output from Typescript and makes them more human readable |\n\n## Adding Content\n\nContent is currently managed in separate repos for each product. This site is only used to serve the documentation from all of our product repos.\n\nOnce you have cloned this repo and the product docs repo you would like to edit you will set the env variable outlined in the docs repo to point to the location on your local file to find that products documentation.\n\n## Setup from scratch\n\nOkay if you have never worked with node or npm then let's walkthrough how to get setup. Thankfully it is so much easier than it used to be.\n\nThe first thing you will need to do is go get [asdf](https://asdf-vm.com/guide/getting-started.html#_1-install-dependencies) installed.\n\n1. Install language plugins\n\nOnce you have asdf installed you will need to install a `plugin` to add node to available languages to manage in asdf. We also will be installing Java because of the tooling that is used to generate the API library we use to make requests to Platform for the changelog.\n\n```bash\nasdf plugin-add nodejs\n\n# For updating the Platform API client SDK\nasdf plugin-add java\n```\n\n2. Install correct versions\n\nThe asdf ecosystem allow project-by-project version management using the `.tool-versions` file. We have one setup already so all you will need to do is run the install command to get everything synced up.\n\n```bash\nasdf install\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrunchydata%2Fcrunchy-docs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrunchydata%2Fcrunchy-docs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrunchydata%2Fcrunchy-docs/lists"}