{"id":50307412,"url":"https://github.com/dev-murphy/personal-website","last_synced_at":"2026-05-31T06:01:16.569Z","repository":{"id":359916989,"uuid":"1247994143","full_name":"dev-murphy/personal-website","owner":"dev-murphy","description":"My Personal Website built using NuxtJS","archived":false,"fork":false,"pushed_at":"2026-05-24T04:33:00.000Z","size":108,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-24T06:19:17.270Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/dev-murphy.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-24T03:42:39.000Z","updated_at":"2026-05-24T04:33:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dev-murphy/personal-website","commit_stats":null,"previous_names":["dev-murphy/personal-website"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dev-murphy/personal-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-murphy%2Fpersonal-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-murphy%2Fpersonal-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-murphy%2Fpersonal-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-murphy%2Fpersonal-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dev-murphy","download_url":"https://codeload.github.com/dev-murphy/personal-website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dev-murphy%2Fpersonal-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33619967,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"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":"2026-05-28T17:31:49.762Z","updated_at":"2026-05-31T06:01:16.556Z","avatar_url":"https://github.com/dev-murphy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Personal Website\n\nMy personal portfolio website — a landing page with project and work-experience\nsections, theming (light/dark), and SEO.\n\n## Tech stack\n\n- [Nuxt 4](https://nuxt.com) (Vue 3, Nitro server)\n- [@nuxt/content](https://content.nuxt.com) v3 — Markdown content, backed by SQLite (`better-sqlite3`)\n- [Tailwind CSS v4](https://tailwindcss.com) via `@tailwindcss/vite`\n- [@nuxt/image](https://image.nuxt.com), [@nuxt/fonts](https://fonts.nuxt.com)\n- [@nuxtjs/seo](https://nuxtseo.com) (sitemap, robots, OG image, schema.org)\n- [@nuxtjs/color-mode](https://color-mode.nuxtjs.org) for theming\n- Package manager: **pnpm** (pinned via `packageManager` in `package.json`)\n\n## Setup\n\nInstall dependencies:\n\n```bash\npnpm install\n```\n\n## Development\n\nStart the dev server on `http://localhost:3000`:\n\n```bash\npnpm dev\n```\n\n## Production build\n\n```bash\npnpm build           # build the Nitro server output into .output/\npnpm preview         # locally preview the production build\n```\n\nThe server entry point is `.output/server/index.mjs`. It listens on `HOST`/`PORT`\n(defaults `0.0.0.0:3000`, or whatever you set via env).\n\n## Docker\n\nThe included [`Dockerfile`](./Dockerfile) is a multi-stage build (Alpine):\n\n```bash\ndocker build -t personal-website .\ndocker run -p 3002:3002 personal-website\n```\n\nThe container serves on **port 3002** (`PORT`/`HOST` are set as `ENV`; override at\nruntime if your platform injects its own `$PORT`).\n\n### Native dependency note (important)\n\n`@nuxt/content` v3 uses `better-sqlite3`, a **native C++ addon**, to serve content\nfrom a SQLite database. This affects the Docker build in two ways:\n\n1. **Build stage** needs `python3 make g++` to compile `better-sqlite3` (no musl\n   prebuilt binary ships for Alpine).\n2. **Runtime stage** needs **`libstdc++`** installed — the compiled addon links\n   against it at load time. The base `node:alpine` image does *not* include it,\n   so without `apk add libstdc++` the server crashes on startup with\n   `Error loading shared library libstdc++.so.6`, and the container never comes\n   up (a fronting proxy will show a generic 500 / \"temporarily unavailable\").\n\nBoth are already handled in the `Dockerfile` — keep them if you edit it.\n\n## Releases\n\nThis repo uses [semantic-release](https://semantic-release.gitbook.io) with\nConventional Commits. Versioning and `CHANGELOG.md` are generated automatically\nfrom commit messages in CI.\n\n## Learn more\n\n- [Nuxt documentation](https://nuxt.com/docs)\n- [Nuxt deployment guide](https://nuxt.com/docs/getting-started/deployment)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-murphy%2Fpersonal-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-murphy%2Fpersonal-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-murphy%2Fpersonal-website/lists"}