{"id":40992724,"url":"https://github.com/slantz/cv","last_synced_at":"2026-01-22T07:42:01.113Z","repository":{"id":89721291,"uuid":"65277453","full_name":"slantz/cv","owner":"slantz","description":"My CV single-page application.","archived":false,"fork":false,"pushed_at":"2026-01-20T13:21:35.000Z","size":4001,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-20T21:36:27.076Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/slantz.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":"2016-08-09T08:29:23.000Z","updated_at":"2026-01-20T13:21:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"36cd1577-639d-49d2-aa8a-e3c44cb46ebb","html_url":"https://github.com/slantz/cv","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/slantz/cv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slantz%2Fcv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slantz%2Fcv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slantz%2Fcv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slantz%2Fcv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slantz","download_url":"https://codeload.github.com/slantz/cv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slantz%2Fcv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28658161,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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-01-22T07:42:01.031Z","updated_at":"2026-01-22T07:42:01.087Z","avatar_url":"https://github.com/slantz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CV Project\n\nThis is a Next.js project for creating and displaying a CV/resume.\n\n## Project Setup\n\nThis project uses [Bun](https://bun.sh/) as the JavaScript runtime and package manager.\n\n### Prerequisites\n\n- [Bun](https://bun.sh/) (latest version)\n\n### Installation\n\n```bash\n# Install dependencies\nbun install\n```\n\n### Development\n\n```bash\n# Start the development server\nbun dev\n```\n\n### Building for Production\n\n```bash\n# Build the project\nbun build\n\n# Start the production server\nbun start\n```\n\n## Migration from pnpm to Bun\n\nThis project was migrated from pnpm to Bun. The following changes were made:\n\n1. Removed `pnpm-lock.yaml` file\n2. Updated scripts in `package.json` to use Bun:\n   - `\"dev\": \"bun --bun run next dev\"`\n   - `\"build\": \"bun --bun run next build\"`\n   - `\"start\": \"bun --bun run next start\"`\n   - `\"lint\": \"bun --bun run next lint\"`\n3. Added `bun.lockb` to `.gitignore` (was already present)\n\n### Completing the Migration\n\nTo complete the migration, run:\n\n```bash\n# Install dependencies with Bun\nbun install\n```\n\nThis will generate the `bun.lockb` file and install all dependencies using Bun.\n\n## Technologies Used\n\n- [Next.js](https://nextjs.org/)\n- [React](https://reactjs.org/)\n- [TypeScript](https://www.typescriptlang.org/)\n- [Tailwind CSS](https://tailwindcss.com/)\n- [Radix UI](https://www.radix-ui.com/)\n- [Framer Motion](https://www.framer.com/motion/)\n- [Firebase](https://firebase.google.com/)\n\n## Use HTTPS for local development\n\nWhen having a production build locally the session cookie for admin will be set as secure since\n```typescript\nsecure: process.env.NODE_ENV === \"production\" \u0026\u0026 \n  (request.headers.get(\"x-forwarded-proto\") === \"https\" || \n  request.url.startsWith(\"https://\"))\n```\n\nso to not have an infinite loop issue locally when going to admin pages logged in as admin, the following should be set up:\n1. `brew install mkcert`\n2. `mkcert localhost 127.0.0.1 ::1` # or add other local IPs that are used as well, this will generate 2 *.pem files that are already in .gitignore\n\nor another option to avoid the infinite loop for testing only locally would be to set secure: false and login on production build will be working finally over http.\n\n## Firebase APP Hosting\n\nThis CV uses the Firebase App Hosting, for this to function several things needs to be done:\n- `firebase init apphosting` which will create 3 files: `apphosting.yaml`, `.firebaserc`, `firebase.json`.\n- `apphosting.yaml` defines the resources utilized and environment variables names stored in Cloud Secret Manager.\n- then each for each environment variable firebase app hosting backend should get access to the cloud manager secret variable, like\n`firebase apphosting:secrets:grantaccess --backend \u003cBACKEND_NAME\u003e --project \u003cPROJECT_NAME\u003e --location \u003cPROJECT_LOCATION\u003e ALLOWED_GITHUB_ID`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslantz%2Fcv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslantz%2Fcv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslantz%2Fcv/lists"}