Skip to main content
HW88
  • Our StoryTeamFounder
  • Ventures
  • Learn
  • CapabilitiesBuild PodsEngagement
  • Insights
  • Media
  • Case Studies
  • Our StoryTeamFounder
  • Ventures
  • Learn
  • CapabilitiesBuild PodsEngagement
  • Insights
  • Media
  • Case Studies
  • Contact
HavenWizards88

Venture Studio for high-stakes founders. We build and automate entire ecosystems for global scale.

Company

  • About Us
  • Team
  • Ventures
  • Case Studies
  • Learn
  • Insights
  • Media
  • Build Log

Services

  • Capabilities
  • Build Pods
  • Strategic Advisory
  • Technology Development
  • Growth Acceleration
  • FAQ

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 HavenWizards 88 Ventures OPC. All rights reserved.

Makati City, Philippines

  1. Home
  2. /Insights
  3. /The Tech Stack for Non-Technical Philippine Founders: What We Use Across 8 Ventures
←Back to PlaybooksINSIGHT

The Tech Stack for Non-Technical Philippine Founders: What We Use Across 8 Ventures

Non-technical Philippine founders need a stack that connects, exports cleanly, and scales: Supabase for data, n8n/Make.com for automation, Next.js for web presence.

D
Diosh Lequiron, PD-SML, PhD, MBA, CSM
May 12, 2026 · 7 min read
tech-stacksupabasen8nmake-comnext-jsnon-technical-foundersphilippines
Share
The Tech Stack for Non-Technical Philippine Founders: What We Use Across 8 Ventures

The Tech Stack for Non-Technical Philippine Founders: What We Use Across 8 Ventures

Non-technical founders in the Philippines face a specific early dilemma: which tools do you commit to before you have a technical co-founder or engineering team? The wrong stack choice creates technical debt that constrains your ventures for years. The right choice gives you a platform that scales from validation to production without a complete rebuild.

Author: Diosh Lequiron, PhD, MBA, CSM | Last updated: 2026-05-12

Why This Decision Matters More Than Most Founders Think

In 2023, we rebuilt one venture's entire data infrastructure from scratch because early tool choices created incompatible data silos. Customer data lived in three separate tools that could not talk to each other. Automation workflows had to be rebuilt from scratch because the original tools did not expose the APIs we needed.

That rebuild cost us 6 weeks and ₱120,000 in contractor time. It was entirely avoidable if we had made better initial decisions about our data backbone.

The lesson shaped our entire multi-venture technology approach: choose tools that connect to each other, prioritize data portability, and never lock critical business logic into a tool that does not expose it via API.

Our Core Stack Across Eight Ventures

We apply a consistent core stack across ventures, with venture-specific additions as needed. Here is what we actually use:

Data Backbone: Supabase

Supabase is PostgreSQL with an API layer, authentication, and real-time subscriptions. We use it as the central data store for every venture — customer records, order data, content, operational metrics.

The reason we chose Supabase over Firebase or Airtable (both of which we tested): your data lives in a real PostgreSQL database that you own. You can query it directly, migrate it freely, and connect any tool to it via standard database connectors. Firebase locks your data in a proprietary format. Airtable limits query complexity and charges per row.

Supabase's free tier handles early validation for all ventures. As ventures grow, row-level security lets us enforce data isolation between ventures even within the same database project.

Automation Layer: n8n and Make.com

We use both, for different purposes.

n8n handles our internal automation — business logic that should not depend on a third-party cloud service, webhook processing for ventures, and automations that touch our Supabase data directly. We self-hosted n8n on our own infrastructure for control and cost reasons. Processing 2,000-plus workflow executions per month costs us a fixed monthly amount rather than per-execution pricing.

Make.com handles our external integrations — connecting to social platforms, email services, and third-party tools where we do not need the data to pass through our own infrastructure first. Make's visual interface is accessible without technical knowledge.

The combination covers 80% of our automation needs without writing code.

Frontend: Next.js on Vercel

For ventures that need a web presence, we use Next.js deployed on Vercel. The reasons are practical: Next.js handles both static and dynamic pages from one codebase, Vercel deploys automatically from GitHub with zero configuration, and the ecosystem of UI components (shadcn/ui, Tailwind) means we can build professional-looking interfaces quickly.

For non-technical founders, the honest answer is that Next.js has a learning curve. We pair it with AI-assisted development tools that generate components from descriptions. A non-technical founder comfortable with structured thinking can make meaningful frontend contributions without writing raw code — but a technical resource, even a part-time one, makes everything faster.

AI Integration: Gemini API + OpenRouter

We use Google's Gemini API for content generation, image generation, and document processing tasks. For our content engine specifically, we moved from OpenRouter's abstraction layer to Gemini's native API because it is more reliable, faster, and cheaper for our specific use case.

The general principle: use the provider's native API when you have a primary model preference. Use an abstraction layer like OpenRouter when you need to route between models based on cost or availability.

Tools We Tested and Rejected

Learning what not to use is as valuable as learning what to use.

Notion as a database: Tempting for non-technical founders because of the familiar interface. We used it for venture operational data for four months before the query limitations and API rate restrictions made it unworkable as anything beyond documentation.

Zapier instead of Make.com: Zapier's pricing model charges per task, which becomes expensive quickly as automation volume grows. Make.com's pricing on operations is significantly more cost-effective at the volume we run.

Firebase for data: The proprietary data format and Firestore's NoSQL model made complex queries difficult. We migrated two ventures from Firebase to Supabase and the operational complexity immediately dropped.

The Stack Decision Framework for Non-Technical Founders

When evaluating any tool for your venture stack, ask these three questions:

  1. Does this tool expose a complete API? If the tool does not give you programmatic access to your own data, you will eventually need to migrate away.
  2. What does failure look like? If this tool goes down or raises its prices dramatically, what is your exit path? Tools with standard export formats (CSV, SQL) are safer than proprietary formats.
  3. Does this connect to everything else we use? Your core tools should be able to talk to each other without custom development. Check for native integrations with your other core tools before committing.

What Non-Technical Founders Can Build Without Hiring

With our stack, a non-technical founder who is comfortable with documentation and structured processes can:

  • Build and deploy a marketing website with content management
  • Set up automated lead capture and email sequences
  • Create operational dashboards pulling from Supabase
  • Deploy content generation pipelines using the Gemini API
  • Automate social media distribution across platforms

What still requires technical support:

  • Custom database schema design for complex data relationships
  • Security configuration (row-level security policies, API gateway rules)
  • Performance optimization for high-traffic applications

Implementation: Tech Stack Checklist for New Philippine Ventures

  1. Supabase from day one — even if you start with a no-code tool, put your customer data in Supabase from the beginning
  2. n8n or Make.com for your first automation — do not manually execute any task that happens more than once per week
  3. Next.js on Vercel for your web presence — the cost is zero at validation stage, the professional output is high
  4. Native APIs over abstraction layers — when you commit to a primary AI provider, use their API directly
  5. Document your stack decisions — write down why you chose each tool. This becomes essential when onboarding technical team members or contractors later

FAQ

What is the total monthly cost of this stack for a new Philippine venture? At validation stage: ₱0–₱2,000 per month. Supabase free tier, Make.com starter plan, Vercel hobby tier, and n8n self-hosted (small server: ₱500–₱1,500 monthly) covers most early-stage needs. Budget grows as transaction volume and automation complexity increases.

When should a non-technical Philippine founder hire their first technical resource? When you have validated product-market fit (10+ paying customers, positive referral signals) and your automation capacity is limiting growth — not before. Hiring technical resources to build before validation is expensive and often produces the wrong product.

Is Supabase reliable enough for production Philippine ventures? Yes. Supabase runs on AWS infrastructure with Philippine region options (ap-southeast-1). Their uptime SLA for paid plans meets production requirements. We have run production ventures on Supabase for 18+ months without data loss or extended downtime.

THE ARSENAL IN ACTION

Systems Thinking, Applied

Explore the capabilities behind our playbooks.

HW-Automate

Automation principles we use to eliminate ops drag, reduce handoffs, and keep teams lean without slowing delivery.

8 playbooksRead Playbooks

HW-Insights

Data and analytics thinking from our ventures, including how we instrument decisions and spot growth inflection points.

5 playbooksRead Playbooks

HW-Scale

Infrastructure patterns that grow without complexity, with playbooks on reliability, ownership, and cost control.

6 playbooksRead Playbooks
D

Diosh Lequiron, PD-SML, PhD, MBA, CSM

President & CEO, HavenWizards 88 Ventures

Building arena-forged execution systems and deploying governed Filipino talent across multiple venture lines. Every insight comes from real operations, not theory.

Related Playbooks

INSIGHT

Building Internal Tools with Supabase and n8n: A Practical Guide for Non-Technical Founders

Most founders build internal tools by paying developers to build them. We built most of ours with Supabase (as the database and API) and n8n (as the automation layer). This is the practical guide — not the "what is Supabase" intro, but what you actually build with it.

10 min read
INSIGHT

n8n for Philippine Business Automation: The Tool We Use Every Day

n8n is not a Zapier clone. It's a workflow automation platform we've deployed across 8 venture lines for tasks that Zapier cannot do, won't do cheaply, and wasn't designed for. Here's what we've learned after deploying it across agritech, e-commerce, and edtech operations in the Philippines.

8 min read
INSIGHT

n8n vs Make.com: What We Use for Different Automation Jobs (and Why)

We don't have a single automation tool. We use n8n for some jobs and Make.com for others — based on complexity, cost, data sensitivity, and whether we need custom code. Here is the honest comparison from an operator who has deployed both at production scale.

8 min read
INSIGHT

SEO for Philippine Founders: What Actually Works in 2026

Philippine founders waste months on SEO tactics that do not match Google's current signals. In 2026, the gap between what works and what is taught has never been wider — especially for new domains in competitive niches.

6 min read

Get the Founder's Briefing

A bi-weekly, no-fluff dispatch of the systems, playbooks, and decisions we are using right now inside our ventures and partner builds. Expect short, tactical notes you can apply in the same week.

Join 2,000+ founders and operators.

No spam. Unsubscribe anytime.