11. Personal Website Workflow — Overview
Solo developers, personal sites, side projects. Free tiers, minimal ops, maximum shipping speed.
Part 11: Personal Website / Side Project Workflow
Solo developer, low budget, maximum shipping speed.
Read this after Roadmap Stage 9 when you're ready to ship your own project. Skim planning and stack-selection now if you're curious; return for payments, auth, and observability when your project needs them.
This chapter walks through how an individual developer plans, builds, ships, and maintains a personal website or side project in 2026. The principles here apply to portfolios, blogs, hobby SaaS, indie tools, learning projects, and any other one-person endeavor.
The whole goal: spend your time on the actual product, not infrastructure. Modern free tiers and managed services let one person ship what would have required a team a decade ago.
Who this chapter is for: You, right now, building your first website or side project. One person, no boss, no users yet, no budget.
The whole philosophy of solo development: Pick boring, well-supported tools. Use free tiers. Ship fast. Don't worry about scaling problems you don't have yet. A weekend project with five users does not need Kubernetes.
What "shipping" actually means: Putting your project on the internet so a real URL — like tony.dev — loads your work in any browser, anywhere in the world. That's deployment. It's the milestone that separates "I'm learning to code" from "I built something."
The 2026 solo stack at a glance:
- Code editor: VS Code or Cursor (free, with AI built in)
- Framework: Next.js or Astro (React-based, fast, free)
- Styling: Tailwind CSS (utility classes, no separate stylesheet to maintain)
- Data: SQLite file, or free Postgres on Neon/Supabase
- Hosting: Vercel or Netlify free tier (deploys when you
git push) - Auth (if needed): Clerk free tier or simple email login
- Total cost: $0/month until you actually have users
Mental model: A solo workflow is like cooking at home. You don't need a commercial kitchen, multiple chefs, or food-safety inspectors. You need a stove, a knife, and ingredients. Pick the minimum that lets you make the meal.
If you only remember one thing: The best solo stack is the one that lets you go from "idea" to "URL my friend can open" in under an evening. Optimize for that.
How this chapter is organized
Each page focuses on a single phase or topic of the solo workflow. Read them in order the first time; revisit any single page later when you need a refresher.
Pages in this chapter
- The Personal Project Mindset — Why enterprise patterns destroy personal projects.
- Common Personal Project Types — Portfolios, blogs, hobby SaaS, tools, learning projects.
- Phase 1: Planning — An afternoon, not a month.
- Phase 3: Stack Selection — The 2026 default stack, and why.
- Phase 4: Environment Setup — One hour to a deployed empty project.
- Phase 5: Development — Server/Client Components, Server Actions, the inner loop.
- Phase 6: Adding Auth — Clerk in twenty minutes.
- Phase 7: Payments — Stripe Checkout + a webhook.
- Phase 8: Deployment — Custom domain, preview URLs, environments.
- Phase 9: Observability — Sentry, Vercel Analytics, PostHog, uptime.
- Phase 10: Launching — Soft launches, pricing, marketing pages.
- Phase 11: Maintenance — Weekly cadence, performance, costs.
- Realistic Time Investment — How long an indie SaaS v1 actually takes.
- Common Pitfalls — Over-engineering, stack churn, not shipping.
- Pre-Built Templates Worth Knowing — When not to start from scratch.
- A Sample Two-Weekend Project — A concrete schedule.
- When to Graduate Beyond "Personal Project" — Signs you're outgrowing solo habits.
When you finish all 17 pages, move on to Chapter 12: Startup Workflow.