{"id":42579382,"url":"https://github.com/jae-labs/pages","last_synced_at":"2026-01-28T22:03:50.360Z","repository":{"id":332459555,"uuid":"1133852768","full_name":"jae-labs/pages","owner":"jae-labs","description":"Just Another Engineer website. Built with Docusaurus and deployed on GitHub Pages.","archived":false,"fork":false,"pushed_at":"2026-01-22T23:12:16.000Z","size":477,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-23T14:11:50.411Z","etag":null,"topics":["cheatsheets","docs","documentation","docusaurus","markdown"],"latest_commit_sha":null,"homepage":"http://justanother.engineer/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jae-labs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-13T22:51:41.000Z","updated_at":"2026-01-22T23:12:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jae-labs/pages","commit_stats":null,"previous_names":["jae-labs/pages"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jae-labs/pages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jae-labs%2Fpages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jae-labs%2Fpages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jae-labs%2Fpages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jae-labs%2Fpages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jae-labs","download_url":"https://codeload.github.com/jae-labs/pages/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jae-labs%2Fpages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28853196,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"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":["cheatsheets","docs","documentation","docusaurus","markdown"],"created_at":"2026-01-28T22:03:49.382Z","updated_at":"2026-01-28T22:03:50.345Z","avatar_url":"https://github.com/jae-labs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Just Another Engineer\n\nA comprehensive cheatsheet website for DevOps, SysAdmin, SRE, and Engineering topics including AWS, Linux utilities, Terraform, Packer, databases, infrastructure management, Vault, Consul, and more.\n\n## Prerequisites\n\n- Node.js (version 25 or higher)\n- yarn\n\n## Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/jae-labs/pages.git\n   cd pages\n   ```\n\n2. Install dependencies:\n   ```bash\n   yarn install\n   ```\n\n## Running Locally\n\nTo start the development server:\n\n```bash\nyarn start\n```\n\nThis will start the server on `http://localhost:3000` and open it in your browser. The site will automatically reload when you make changes.\n\n## Building\n\nTo build the site for production:\n\n```bash\nyarn build\n```\n\nThe built files will be in the `build` directory.\n\n## Serving the Built Site\n\nTo serve the built site locally:\n\n```bash\nyarn serve\n```\n\n## Deploying\n\nThis site is configured for deployment to GitHub Pages. To deploy:\n\n```bash\nyarn deploy\n```\n\nThis will build the site and push it to the `gh-pages` branch.\n\n## Upgrading Docusaurus\n\nTo upgrade Docusaurus to the latest version:\n\n1. Check the [Docusaurus migration guide](https://docusaurus.io/docs/migration) for any breaking changes.\n\n2. Update the dependencies:\n   ```bash\n   yarn upgrade @docusaurus/core @docusaurus/preset-classic @docusaurus/plugin-content-docs @docusaurus/theme-search-algolia\n   ```\n\n3. If upgrading to a major version (e.g., v2 to v3 or v3 to v4):\n   - Manually update the version numbers in `package.json` for all `@docusaurus/` packages to the target major version.\n   - Update related dependencies as required (e.g., React to v18, MDX to v3 for v3 upgrades).\n   - Update the Node.js engine requirement in `package.json` if specified.\n   - Run `yarn install` to install the updated packages.\n   - Follow any specific migration steps in the guide, such as running migration scripts or updating configuration files.\n   - Check for MDX-related breaking changes, as major versions often include MDX upgrades.\n\n4. Test the site locally after upgrading.\n\n## Making Changes\n\n### Adding Documentation\n\n1. Add new `.md` or `.mdx` files to the `docs/` directory.\n2. Update `sidebars.js` to include the new documents in the sidebar.\n3. For images, place them in the `static/img/` directory.\n\n### Modifying the Theme\n\n- Edit files in `src/components/` for custom components.\n- Modify `src/css/custom.css` for custom styles.\n- Use `yarn swizzle` to eject and customize Docusaurus components.\n\n### Configuration\n\n- Edit `docusaurus.config.js` for site configuration.\n- Update `babel.config.js` if needed for custom Babel configuration.\n\nAfter making changes:\n\n1. Test locally with `yarn start`.\n2. Build with `yarn build`.\n3. Commit and push your changes.\n4. Deploy with `yarn deploy`.\n\n## Contributing\n\nContributions are welcome! Please see the [Contributing Guide](https://justanother.engineer/contributing) for details.\n\n## License\n\nThis project is licensed under the terms specified in the [LICENSE](LICENSE) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjae-labs%2Fpages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjae-labs%2Fpages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjae-labs%2Fpages/lists"}