{"id":30210884,"url":"https://github.com/schulzetenberg/personal-website","last_synced_at":"2026-05-14T23:03:05.564Z","repository":{"id":45315825,"uuid":"41889570","full_name":"schulzetenberg/personal-website","owner":"schulzetenberg","description":"Personal website","archived":false,"fork":false,"pushed_at":"2025-09-12T22:10:47.000Z","size":47831,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-30T22:57:07.043Z","etag":null,"topics":["angular","personal-website","portfolio-website","website"],"latest_commit_sha":null,"homepage":"https://schulzetenberg.com","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/schulzetenberg.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":"2015-09-03T23:58:43.000Z","updated_at":"2025-09-12T22:10:50.000Z","dependencies_parsed_at":"2025-09-13T00:07:36.667Z","dependency_job_id":"873bb04b-2d27-4ec5-b729-4b2e95c580df","html_url":"https://github.com/schulzetenberg/personal-website","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/schulzetenberg/personal-website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schulzetenberg%2Fpersonal-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schulzetenberg%2Fpersonal-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schulzetenberg%2Fpersonal-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schulzetenberg%2Fpersonal-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/schulzetenberg","download_url":"https://codeload.github.com/schulzetenberg/personal-website/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schulzetenberg%2Fpersonal-website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278577402,"owners_count":26009699,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"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":["angular","personal-website","portfolio-website","website"],"created_at":"2025-08-13T20:23:28.433Z","updated_at":"2026-05-14T23:03:05.557Z","avatar_url":"https://github.com/schulzetenberg.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Personal Website\n\nPortfolio site for [schulzetenberg.com](https://schulzetenberg.com), built with Next.js 16, React 19, TypeScript, Tailwind CSS v4, and deployed to Cloudflare Workers through OpenNext.\n\n## Stack\n\n- Next.js App Router\n- React 19\n- TypeScript\n- Tailwind CSS v4\n- OpenNext for Cloudflare\n- Wrangler for preview and deployment\n\n## What Is In This Repo\n\n- `app/`: App Router pages, metadata, sitemap, robots rules, and the Instagram API route\n- `components/`: homepage sections and shared UI\n- `lib/`: environment helpers and project data\n- `public/`: static assets\n- `docs/`: project notes and redesign plans\n- `OLD/`: archived code from the previous version of the site\n\nThe homepage is assembled from a small set of sections:\n\n- header\n- about\n- skills\n- projects\n- Instagram\n- footer\n\n## Requirements\n\n- Node.js 20.9 or newer\n- npm\n\n## Local Development\n\n1. Install dependencies:\n\n   ```bash\n   npm install\n   ```\n\n2. Create a local environment file if you want to override the defaults used in `lib/env.ts`:\n\n   ```bash\n   touch .env.local\n   ```\n\n3. Add any values you need:\n\n   ```bash\n   INSTAGRAM_API_URL=https://data.schulzetenberg.com/api\n   INSTAGRAM_API_TOKEN=your-token\n   NEXT_PUBLIC_GA_ID=G-XXXXXXXXXX\n   ```\n\n4. Start the dev server:\n\n   ```bash\n   npm run dev\n   ```\n\n5. Open [http://localhost:3000](http://localhost:3000).\n\n## Scripts\n\n- `npm run dev`: start the local Next.js dev server (Turbopack is the default in Next.js 16)\n- `npm run build`: create a production build\n- `npm run start`: serve the production build locally\n- `npm run lint`: run ESLint\n- `npm run lint:fix`: run ESLint with automatic fixes\n- `npm run format`: format the repo with Prettier\n- `npm run format:check`: check formatting without changing files\n- `npm run preview`: build the Cloudflare worker and run the OpenNext preview flow\n- `npm run deploy`: build and deploy to Cloudflare Workers\n- `npm run cf-typegen`: regenerate `cloudflare-env.d.ts` from Wrangler\n\n## Environment Variables\n\nThe site reads its runtime configuration from `lib/env.ts`.\n\n- `INSTAGRAM_API_URL`: base URL for the Instagram data service\n- `INSTAGRAM_API_TOKEN`: token sent to the Instagram data service\n- `NEXT_PUBLIC_GA_ID`: Google Analytics measurement ID\n\nIf these values are not set, the app currently falls back to defaults defined in code. For production, prefer configuring them explicitly through `.env.local` and Cloudflare secrets or vars.\n\n## Deployment\n\nThis project is set up for Cloudflare Workers using OpenNext.\n\nBasic flow:\n\n1. Build the worker bundle:\n\n   ```bash\n   npm run preview\n   ```\n\n2. Deploy it:\n\n   ```bash\n   npm run deploy\n   ```\n\nThe deployment config lives in `wrangler.jsonc` and `open-next.config.ts`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschulzetenberg%2Fpersonal-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fschulzetenberg%2Fpersonal-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschulzetenberg%2Fpersonal-website/lists"}