{"id":20708565,"url":"https://github.com/matb85/matb85.github.io","last_synced_at":"2026-04-21T15:01:43.454Z","repository":{"id":143767444,"uuid":"548378891","full_name":"Matb85/matb85.github.io","owner":"Matb85","description":"Welcome to my portfolio :-)","archived":false,"fork":false,"pushed_at":"2026-03-21T22:46:03.000Z","size":1108697,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-22T10:55:53.824Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://matb85.github.io","language":"Astro","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/Matb85.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-10-09T12:56:50.000Z","updated_at":"2026-03-21T22:42:55.000Z","dependencies_parsed_at":"2025-08-24T05:07:43.953Z","dependency_job_id":null,"html_url":"https://github.com/Matb85/matb85.github.io","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Matb85/matb85.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matb85%2Fmatb85.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matb85%2Fmatb85.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matb85%2Fmatb85.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matb85%2Fmatb85.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Matb85","download_url":"https://codeload.github.com/Matb85/matb85.github.io/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Matb85%2Fmatb85.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32097173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"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":[],"created_at":"2024-11-17T01:32:10.451Z","updated_at":"2026-04-21T15:01:43.438Z","avatar_url":"https://github.com/Matb85.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qwik App ⚡️\n\n- [Qwik Docs](https://qwik.builder.io/)\n- [Discord](https://qwik.builder.io/chat)\n- [Qwik Github](https://github.com/BuilderIO/qwik)\n- [@QwikDev](https://twitter.com/QwikDev)\n- [Vite](https://vitejs.dev/)\n- [Partytown](https://partytown.builder.io/)\n- [Mitosis](https://github.com/BuilderIO/mitosis)\n- [Builder.io](https://www.builder.io/)\n\n---\n\n## Project Structure\n\nInside of you project, you'll see the following directories and files:\n\n```\n├── public/\n│   └── ...\n└── src/\n    ├── components/\n    │   └── ...\n    └── routes/\n        └── ...\n```\n\n- `src/routes`: Provides the directory based routing, which can include a hierarchy of `layout.tsx` layout files, and `index.tsx` files as the page. Additionally, `index.ts` files are endpoints. Please see the [routing docs](https://qwik.builder.io/qwikcity/routing/overview/) for more info.\n\n- `src/components`: Recommended directory for components.\n\n- `public`: Any static assets, like images, can be placed in the public directory. Please see the [Vite public directory](https://vitejs.dev/guide/assets.html#the-public-directory) for more info.\n\n## Add Integrations\n\nUse the `npm run qwik add` command to add other integrations. Some examples of integrations include as a Cloudflare, Netlify or Vercel server, and the Static Site Generator (SSG).\n\n```\nnpm run qwik add\n```\n\n## Development\n\nDevelopment mode uses [Vite's development server](https://vitejs.dev/). For Qwik during development, the `dev` command will also server-side render (SSR) the output. The client-side development modules loaded by the browser.\n\n```\nnpm run dev\n```\n\n\u003e Note: during dev mode, Vite will request many JS files, which does not represent a Qwik production build.\n\n## Preview\n\nThe preview command will create a production build of the client modules, production build of `src/entry.preview.tsx`, and create a local server. The preview server is only for convenience to locally preview a production build, but it should not be used as a production server.\n\n```\nnpm run preview\n```\n\n## Production\n\nThe production build should generate the client and server modules by running both client and server build commands. Additionally, the build command will use Typescript run a type check on the source.\n\n```\nnpm run build\n```\n\n## Static Site Generator (Node.js)\n\n```\nnpm run build.server\n```\n\n## Static Site Generator (Node.js)\n\n```\nnpm run build.server\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatb85%2Fmatb85.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatb85%2Fmatb85.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatb85%2Fmatb85.github.io/lists"}