{"id":30653997,"url":"https://github.com/dedevsclub/dedevs-docs","last_synced_at":"2025-08-31T08:10:06.150Z","repository":{"id":289010295,"uuid":"951341144","full_name":"DeDevsClub/dedevs-docs","owner":"DeDevsClub","description":"DeDevs documentation starter kits and template. Designed for modern and interactive technical guides and documentation.","archived":false,"fork":false,"pushed_at":"2025-08-29T04:46:58.000Z","size":6109,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-29T08:24:15.236Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://dedevs-docs.vercel.app","language":"TypeScript","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/DeDevsClub.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2025-03-19T14:27:07.000Z","updated_at":"2025-08-29T04:47:01.000Z","dependencies_parsed_at":"2025-04-21T03:31:39.157Z","dependency_job_id":"d5e885fc-797f-405d-8a2a-0e4e010984b6","html_url":"https://github.com/DeDevsClub/dedevs-docs","commit_stats":null,"previous_names":["dedevsclub/dedevs-docs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DeDevsClub/dedevs-docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeDevsClub%2Fdedevs-docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeDevsClub%2Fdedevs-docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeDevsClub%2Fdedevs-docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeDevsClub%2Fdedevs-docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DeDevsClub","download_url":"https://codeload.github.com/DeDevsClub/dedevs-docs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DeDevsClub%2Fdedevs-docs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272953955,"owners_count":25021136,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-08-31T08:10:04.870Z","updated_at":"2025-08-31T08:10:06.132Z","avatar_url":"https://github.com/DeDevsClub.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dedevs-docs\n\nThis is a Next.js documentation application powered by [Fumadocs](https://fumadocs.vercel.app) and generated with [Create DeDevs App](https://github.com/DeDevsClub/create-dedevs-app).\n\n## Getting Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/) (v18 or newer)\n- [pnpm](https://pnpm.io/) package manager\n\n### Installation\n\nThis docs application is part of a monorepo. You can either install and run just the docs app or the entire project.\n\n#### Option 1: Install and run only the docs app\n\n```bash\n# Navigate to the docs directory\ncd apps/docs\n\n# Install dependencies\npnpm install\n\n# Run the development server\npnpm dev\n```\n\n#### Option 2: Install and run the entire monorepo\n\n```bash\n# From the root directory\npnpm apps:install  # Install all apps\n\n# Then run the docs app\npnpm docs  # This runs the docs app via 'make docs'\n```\n\nOpen [http://localhost:3003](http://localhost:3003) with your browser to see the result.\n\n## Project Structure\n\n```\napps/docs/\n├── app/                # Next.js app router\n│   ├── (home)/        # Home page routes\n│   ├── api/           # API routes, including search\n│   └── docs/          # Documentation pages\n├── content/           # Documentation content\n│   └── docs/          # MDX documentation files\n├── lib/               # Utility functions and configurations\n├── public/            # Static assets\n└── README.md          # This file\n```\n\n## Scripts\n\n- `pnpm dev` - Run the development server on port 3003\n- `pnpm build` - Build the application for production\n- `pnpm start` - Start the production server\n- `pnpm postinstall` - Run automatically after install to set up Fumadocs MDX\n\n## Monorepo Structure\n\nThis docs application is part of a larger monorepo that includes:\n\n- `apps/api` - Backend API\n- `apps/docs` - This documentation app\n- `apps/hashnode` - Hashnode blog integration\n- `apps/nextjs` - Main Next.js application\n- `apps/portfolio` - Portfolio website\n\n## Learn More\n\nTo learn more about Next.js and Fumadocs, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial\n- [Fumadocs](https://fumadocs.vercel.app) - learn about Fumadocs documentation framework\n- [Create DeDevs App](https://github.com/DeDevsClub/create-dedevs-app) - learn about the Create DeDevs App CLI tool\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdedevsclub%2Fdedevs-docs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdedevsclub%2Fdedevs-docs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdedevsclub%2Fdedevs-docs/lists"}