{"id":39858513,"url":"https://github.com/azurajs/website","last_synced_at":"2026-01-20T15:00:54.729Z","repository":{"id":332483849,"uuid":"1133947782","full_name":"azurajs/website","owner":"azurajs","description":"🌐 The official website and documentation for AzuraJS, a TypeScript-first framework for building fast APIs.","archived":false,"fork":false,"pushed_at":"2026-01-14T03:49:12.000Z","size":1288,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-14T07:09:28.124Z","etag":null,"topics":["api","documentation","fumadocs","mdx","nextjs","website"],"latest_commit_sha":null,"homepage":"https://azura.js.org","language":"MDX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azurajs.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":null,"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-14T03:10:08.000Z","updated_at":"2026-01-14T04:05:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/azurajs/website","commit_stats":null,"previous_names":["azurajs/website"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/azurajs/website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurajs%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurajs%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurajs%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurajs%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azurajs","download_url":"https://codeload.github.com/azurajs/website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurajs%2Fwebsite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28571556,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["api","documentation","fumadocs","mdx","nextjs","website"],"created_at":"2026-01-18T13:55:05.398Z","updated_at":"2026-01-19T14:00:37.350Z","avatar_url":"https://github.com/azurajs.png","language":"MDX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AzurJS Website\n\n\u003e Repositório do website oficial do AzurJS, construído com [Next.js](https://nextjs.org/) e [Fumadocs](https://fumadocs.dev/).\n\n---\n\n## Índice\n- [Sobre o Projeto](#sobre-o-projeto)\n- [Como Rodar Localmente](#como-rodar-localmente)\n- [Estrutura do Projeto](#estrutura-do-projeto)\n- [Como Contribuir](#como-contribuir)\n- [Saiba Mais](#saiba-mais)\n\n---\n\n## Sobre o Projeto\n\nEste projeto é responsável pelo site de documentação e landing page do AzurJS. Utiliza Next.js para o frontend e Fumadocs para gerenciamento de conteúdo em MDX.\n\n## Como Rodar Localmente\n\nClone o repositório e instale as dependências:\n\n```bash\nnpm install\n# ou\npnpm install\n# ou\nyarn install\n```\n\nInicie o servidor de desenvolvimento:\n\n```bash\nnpm run dev\n# ou\npnpm dev\n# ou\nyarn dev\n```\n\nAbra http://localhost:3000 no seu navegador para visualizar o site.\n\n## Estrutura do Projeto\n\n- `src/lib/source.ts`: Adaptador para fonte de conteúdo. Veja [`loader()`](https://fumadocs.dev/docs/headless/source-api) para detalhes.\n- `src/lib/layout.shared.tsx`: Opções compartilhadas de layout.\n- `src/app/(home)`: Landing page e páginas institucionais.\n- `src/app/docs`: Layout e páginas de documentação.\n- `src/app/api/search/route.ts`: Handler de busca.\n- `content/`: Documentação em MDX, organizada por idioma.\n\n## Como Contribuir\n\nContribuições são bem-vindas! Siga os passos abaixo para colaborar:\n\n1. Faça um fork deste repositório.\n2. Crie uma branch para sua feature ou correção:\n   ```bash\n   git checkout -b minha-feature\n   ```\n3. Faça suas alterações e commit:\n   ```bash\n   git commit -m \"feat: minha contribuição\"\n   ```\n4. Envie para seu fork:\n   ```bash\n   git push origin minha-feature\n   ```\n5. Abra um Pull Request detalhando suas mudanças.\n\n**Dicas:**\n- Siga o padrão de código do projeto.\n- Sempre descreva claramente o que foi alterado.\n- Se possível, adicione testes ou exemplos.\n\n## Saiba Mais\n\n- [Documentação Next.js](https://nextjs.org/docs) — Recursos e API do Next.js\n- [Tutorial Interativo Next.js](https://nextjs.org/learn)\n- [Fumadocs](https://fumadocs.dev) — Documentação do Fumadocs\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurajs%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazurajs%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurajs%2Fwebsite/lists"}