{"id":32329908,"url":"https://github.com/ankddev/website","last_synced_at":"2026-05-05T17:32:41.079Z","repository":{"id":319315649,"uuid":"1078327730","full_name":"ankddev/website","owner":"ankddev","description":"My personal website, blog and portfolio","archived":false,"fork":false,"pushed_at":"2025-10-27T04:41:40.000Z","size":309,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-27T06:23:16.612Z","etag":null,"topics":["ankddev","blog","svelte","sveltekit","unocss","vercel","vite","website"],"latest_commit_sha":null,"homepage":"https://ankddev.vercel.app/","language":"Svelte","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/ankddev.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":"2025-10-17T14:58:00.000Z","updated_at":"2025-10-27T04:41:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"b916a099-1dad-466e-812e-b80f29fea9c8","html_url":"https://github.com/ankddev/website","commit_stats":null,"previous_names":["ankddev/website"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ankddev/website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ankddev%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ankddev%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ankddev%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ankddev%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ankddev","download_url":"https://codeload.github.com/ankddev/website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ankddev%2Fwebsite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32660276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"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":["ankddev","blog","svelte","sveltekit","unocss","vercel","vite","website"],"created_at":"2025-10-23T18:20:11.068Z","updated_at":"2026-05-05T17:32:41.074Z","avatar_url":"https://github.com/ankddev.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"# /dev/ankddev\n\n[ankddev](https://github.com/ankddev)'s personal site, blog and portfolio.\n\n## Getting Started\n\n### Prerequisites\n\n- [Bun](https://bun.sh/) (recommended) or Node.js 18+\n- Git\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/ankddev/website\ncd website\n```\n\n2. Install dependencies:\n\n```bash\nbun install\n```\n\n3. Start the development server:\n\n```bash\nbun run dev\n```\n\n4. Open your browser and navigate to `http://localhost:5173`\n\n### Available Scripts\n\n- `bun run dev` - Start development server\n- `bun run build` - Build for production\n- `bun run preview` - Preview production build locally\n- `bun run check` - Run type checking and linting\n- `bun run check:watch` - Run type checking and linting in background\n- `bun run format` - Format with Prettier\n- `bun run lint` - Check formatting and linting\n\n## Writing Articles\n\nArticles are written in MDX format and stored in the `content/articles/` directory. Each article should include frontmatter with metadata:\n\n```mdx\n---\ntitle: Your Article Title\ndescription: Brief description of the article\ndate: 2024-01-15\ntags:\n  - tag1\n  - tag2\npinned: false\n---\n\nYour article content here with support for:\n\n- Markdown syntax\n- Embedded Svelte components\n- Code blocks with syntax highlighting\n```\n\n### Code Highlighting\n\nThe project uses Shiki for syntax highlighting with custom transformer:\n\n- Focus notation: `// [!code focus]`\n\n## Styling\n\nThe project uses UnoCSS with:\n\n- Custom presets for icons and styling\n- CSS variables for theming\n- Responsive design utilities\n- Variable fonts\n\n## Configuration\n\nKey configuration files:\n\n- `svelte.config.js` - SvelteKit and MDsveX configuration\n- `uno.config.ts` - UnoCSS configuration\n- `vite.config.ts` - Vite build configuration\n- `tsconfig.json` - TypeScript configuration\n\n## Deployment\n\nThe site is automatically deployed to Vercel on push to the main branch. The deployment configuration is handled by the Vercel adapter in `svelte.config.js`.\n\n## Manual Deployment\n\nTo deploy manually:\n\n```bash\n# Build the project:\nbun run build\n# Deploy to Vercel:\nvercel --prod\n```\n\n## Contributing\n\nWhile this is a personal website and blog, suggestions and bug reports are welcome! Please:\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Submit a pull request\n\n## License\n\nThis project is available under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fankddev%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fankddev%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fankddev%2Fwebsite/lists"}