{"id":41100067,"url":"https://github.com/tedawf/tedawf.com","last_synced_at":"2026-01-22T15:06:52.687Z","repository":{"id":256060045,"uuid":"852910392","full_name":"tedawf/tedawf.com","owner":"tedawf","description":"My personal site built with Next.js","archived":false,"fork":false,"pushed_at":"2025-12-28T19:48:14.000Z","size":24549,"stargazers_count":56,"open_issues_count":0,"forks_count":17,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-31T11:15:56.089Z","etag":null,"topics":["developer-portfolio","nextjs","personal-blog","personal-portfolio","personal-site","personal-website","portfolio","portfolio-page","portfolio-project","portfolio-site","portfolio-website","shadcn-ui","tailwindcss"],"latest_commit_sha":null,"homepage":"https://tedawf.com","language":"TypeScript","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/tedawf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2024-09-05T16:33:10.000Z","updated_at":"2025-12-30T11:12:05.000Z","dependencies_parsed_at":"2024-10-19T06:46:22.432Z","dependency_job_id":"2fb52dac-9b64-4570-894c-439fc8112182","html_url":"https://github.com/tedawf/tedawf.com","commit_stats":null,"previous_names":["tedawf/tedawf.com"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/tedawf/tedawf.com","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedawf%2Ftedawf.com","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedawf%2Ftedawf.com/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedawf%2Ftedawf.com/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedawf%2Ftedawf.com/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tedawf","download_url":"https://codeload.github.com/tedawf/tedawf.com/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tedawf%2Ftedawf.com/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28664898,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T14:01:31.714Z","status":"ssl_error","status_checked_at":"2026-01-22T13:59:23.143Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["developer-portfolio","nextjs","personal-blog","personal-portfolio","personal-site","personal-website","portfolio","portfolio-page","portfolio-project","portfolio-site","portfolio-website","shadcn-ui","tailwindcss"],"created_at":"2026-01-22T15:06:52.063Z","updated_at":"2026-01-22T15:06:52.681Z","avatar_url":"https://github.com/tedawf.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Personal Portfolio\n\nA clean, minimal portfolio website built with Next.js, Tailwind CSS, and Shadcn UI. Features an AI chatbot, email contact form, and blog.\n\n\u003e The main branch is where I experiment with new ideas. If you want a stable, ready-to-use version, check out the [v1.0.0 release](https://github.com/tedawf/tedawf.com/releases/tag/v1.0.0).\n\n## Live Demo\n\n🌐 Check it out here: **[tedawf.com](https://tedawf.com)**\n\n![Portfolio Screenshot](public/img/tedawf-com-2.png)\n\n## Features\n\n- Minimal design with Shadcn UI\n- Light/dark mode toggle\n- AI chatbot (Ted Support) trained on my portfolio content - please be nice to it! 😊\n- Contact form with email integration\n- Responsive mobile design\n- Blog section\n\n## Tech Stack\n\n### v1.0.0\n\n- Next.js\n- Tailwind CSS\n- Shadcn UI\n- OpenAI API (chatbot)\n- Vercel (hosting)\n- AstraDB (vector storage)\n- Upstash (caching)\n- Resend (email)\n\n### Main branch\n\n- Next.js\n- Tailwind CSS\n- Shadcn UI\n- OpenAI API (chatbot)\n- Vercel (hosting)\n- Resend (email)\n- Postgres + pgvector (vector storage)\n- Obsidian + LiveSync plugin (CMS)\n- CouchDB (document storage)\n\n## Getting Started\n\n```bash\ngit clone https://github.com/tedawf/tedawf.com my-portfolio\ncd my-portfolio\ngit checkout tags/v1.0.0\nnpm install\ncp .env.example .env.local\n# add your API keys to .env.local\nnpm run dev\n```\n\n## Environment Variables\n\nSee .env.example\n\n### On-demand blog revalidation\n\nThis repo caches blog pages for performance. To see edits immediately after the FastAPI/CouchDB pipeline updates a post, set `REVALIDATE_SECRET` and call the revalidation endpoint from the backend:\n\n```bash\n# Revalidate blog index + a specific post page\ncurl -X POST 'http://localhost:3000/api/revalidate?secret=MY_SECRET' \\\n  -H 'content-type: application/json' \\\n  -d '{\"slug\":\"my-post-slug\"}'\n\n# Revalidate only the blog index (no body)\ncurl -X POST 'http://localhost:3000/api/revalidate?secret=MY_SECRET'\n```\n\n## Customization\n\n- Update personal info in `src/data/*.json`\n- Replace projects in `src/data/projects.json`\n- Replace blog posts in `content/` or remove it.\n- Replace your resume with `public/resume.pdf`\n- Modify chatbot prompt in `src/app/api/chat/route.ts`\n\n## Deployment\n\nI prefer [Vercel](https://vercel.com/) for Next.js projects:\n\n1. Push your fork to GitHub\n2. Connect repo to Vercel\n3. Add environment variables\n4. Deploy 🎉\n\n## Costs\n\n- OpenAI API: ~$5\n- Domain: ~$20/year\n- Hosting/DB: Free tiers\n\n## License\n\nMIT\n\n## Featured on YouTube\n\n📺 **[Live Portfolio Review by Anthony Sistilli](https://www.youtube.com/watch?v=aUJiNyb3cvM\u0026t=40s)** - Got reviewed live on his stream!\n\n🔥 **[Started a trend?](https://youtu.be/ib-Nlg9qWBw?si=1atsKJyfYDXtFVnE\u0026t=400)** - Apparently this portfolio design inspired others!\n\n---\n\n✨ Feel free to fork and make it your own! Would love to see what you guys do with it!\n\n-- Ted\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftedawf%2Ftedawf.com","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftedawf%2Ftedawf.com","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftedawf%2Ftedawf.com/lists"}