Free guide · @shrug.manny
The window to build is right now.
Zero to live app in 21 days. Here's exactly how I did it.
📱 Viralbite.co
🔥 2M+ views
Progress AI
14K+users
$20K+generated
Question 1 of 7
Where are you starting from?
🌱
I don't have a concrete idea yet — starting from zero
💡
I have an app idea. I've used some AI tools but not sure how to start building/deploy.
🔨
I've already started building. I just need more guidance and validation.
📣
I just need guidance on marketing + distribution.
✏️
Something else
Question 2 of 7
What kind of app are you building?
📱
Consumer app — people pay to download or subscribe
Direct-to-user. App Store, subscriptions, one-time purchases.
🏢
Business tool — companies pay to use it (B2B / SaaS)
🎯
Building around my personal brand or creator audience
An app that extends my content or serves my existing following.
🤔
Not sure yet — still figuring out the model
I have an idea but haven't locked in how to monetize it.
Question 3 of 7
What does your week look like right now?
💼
9-to-5 job — building on the side
🎓
Student or between things — time, need direction
I can move fast if I know what to do.
🚀
Full-time on my own thing already
Revenue is the priority. I need to ship.
🔀
Freelance, gigs, figuring it out as I go
Question 4 of 7
Be honest — what's really been getting in your way?
Select everything that applies.
💰
I'm not sure how to monetize or if this will actually make money
🛠️
I don't have a technical background — not sure I can build this alone
💸
I'm not sure how much it'll cost to build
Tools, hosting, infrastructure — it's unclear what actually has a price tag.
🕳️
I'm worried I'll invest time building something nobody wants
Months in, and nobody cares. That's the fear.
Question 5 of 6
Have you tried to build before?
🌱
Never — this would be my first attempt
💔
I tried, got stuck somewhere, and stopped
I know that feeling. Something broke the momentum.
📦
I've built something but never shipped it publicly
It exists. Nobody's seen it yet.
🚀
I've shipped before — I need to move faster
Question 6 of 6
What does success look like for you financially?
🧪
I just want to build something real — money isn't the primary motivation right now
📈
$500–$1K/month — enough to prove the concept works
I want validation. A real signal that people will pay.
💼
$1K–$5K/month — replace income or supplement it meaningfully
🚀
$10K+/month — I'm building a real business
This isn't a side project. I'm going all in.
👾
Emmanuel
Built Viralbite · 14K+ users · $20K+ generated
Your Path
Your launch map is ready.
This is the exact path I took — from idea, to my first 10,000 users and monetization in 21 days.
21days to ship
14K+users
$20K+generated
8steps
Your roadmap
8 steps
Steps 3–8 are where most people quit.
Unlock the full roadmap — plus resources, prompts, and checklists — with your email.

Building your guide...

What you unlocked
Free
App Idea Validator
5 questions to know if your idea is worth building — before you write a line of code.
Most apps don't fail because the build went wrong. They fail because nobody wanted the thing. I learned this by studying apps making $50K/month — and reading every 1-star review they had. Here's the method.
The Sensor Tower Method
Find the gap before you pick the idea
Go to Sensor Tower (free tier works). Filter by your target category. Sort by revenue — highest first. Find apps making $50K+/month with ratings under 3.5 stars. Read every 1-star review. That's your product roadmap — users are already paying for something they hate. That gap is your opportunity.
1
Is there a high-revenue app in your category with consistently bad ratings?
If yes, read every 1-star review. What people complain about most is your feature list.
2
Can you describe your user's life without your app in one sentence?
If you can't name the pain clearly, you don't understand it well enough to solve it.
3
Would someone pay $5/month on day one — before anything is polished?
Not after it's finished. Day one. If you're unsure, the idea isn't specific enough yet.
4
What's the one feature that makes someone open the app daily?
If you have multiple answers, you're building too many things. Strip everything but one.
5
Who's your real competitor — and what do their users wish it did differently?
Their App Store reviews are free market research. Read them before you write a single line of code.
If you can't answer all five confidently, you're not ready to build yet. This is the part people skip — and why most apps never see traction. Talking through your answers with builders who've shipped is how you know you're not fooling yourself.
Get full access in the community ›
Free — 3 of 14
Starter Prompts
Three Cursor + Claude prompts that actually work. The other 11 are in the toolkit.
I spent weeks figuring out how to talk to AI without getting garbage back. Generic prompts get generic code. These are the three that changed how I build — copy them directly into Cursor.
Project Scaffold
You are a senior mobile developer. I want to build [describe your app in one sentence]. The target user is [describe them]. The core value is [one line — what problem it solves]. Generate the complete project architecture for a React Native (Expo) app. Include: folder structure, main screens, key components, and tech stack. Don't write code yet — architecture and a brief explanation of each piece and why it belongs there.
Feature Scope
I'm building [app name]. Here's what I think it needs: [list your features]. Play the role of a ruthless product manager. Tell me: 1. Which features are core to the value proposition 2. Which are distractions — cut them completely 3. What the MVP is: the smallest version someone would actually pay for on day one Be direct. I don't need encouragement. I need to know what to cut.
Bug Fix
I'm building a React Native app with Expo and Supabase. Here's the error: [paste the full error message] Here's the relevant code: [paste your code block] Tell me exactly what's wrong and give me the fixed version. Explain why it broke — not just what to change, but why — so I understand it and don't hit this again.
These three cover getting started. Steps 4 through 7 of your roadmap each have their own prompt sequences — database setup, paywall integration, auth edge cases, App Store submission prep. That's 14 prompts total. The full library is inside the toolkit.
5 Free 13 in Toolkit
Security Checklist
18 things I check before every launch. The 5 that catch the most common and most costly mistakes are here.
A developer left an API key exposed in his public repo for 48 hours after launch. His AWS bill was $3,400. This list exists because of stories exactly like that. Here are the first five — the ones that catch the most common and most costly mistakes.
API keys and secrets are in .env files — never hardcoded in source code
Search your entire codebase for your actual key strings before you push anything.
Your .gitignore actually includes .env — check this right now
It's the most common oversight. Open the file. Is .env in there? Don't assume.
Supabase Row Level Security (RLS) is enabled on every table
Supabase tables are open by default. Without RLS, any user can read any row in your database.
Your app doesn't log sensitive user data to the console
Search for console.log in your codebase. Remove any that output emails, IDs, tokens, or payment data.
Your App Store listing doesn't claim features you haven't fully built
Reviewers test the claims in your screenshots and description. Unbuilt features = immediate rejection.
Auth token expiration and refresh flows are tested end-to-end
Password reset flow works — including the email delivery
Deep links are validated and can't be spoofed
API endpoints reject unauthenticated requests correctly
RevenueCat webhook is receiving and processing events
+ 13 more checkpoints — auth edge cases, backend permissions, and specific things Apple always flags
Get the full 18-point checklist — $47
Free
Privacy Policy Guide
What Apple actually requires — and what generic policy generators miss.
This is the part that trips up first-time launchers the most. Apple's privacy requirements are specific, they check, and they reject apps for getting it wrong. Here's what you actually need and where to get it.
Required
Privacy Policy — live at a public URL
You enter this URL during App Store submission. It must be live before you submit. Reviewers click it.
Required
Privacy Nutrition Labels in App Store Connect
You declare what data your app collects — analytics, identifiers, purchases, usage data. You fill this out manually. Get it wrong and you get flagged.
If you store user data
Account deletion flow inside the app
Since 2022, Apple requires apps with user accounts to offer in-app account deletion. No external forms — it must be inside the app itself.
If you use tracking or ads
App Tracking Transparency (ATT) prompt
Required if you use any third-party analytics or advertising. The prompt must appear before you collect any tracking data.
Where to generate your policy
⚠️ What generated policies miss
Generators only cover what you tell them. Apps using Supabase auth, RevenueCat, or any third-party SDKs need specific data-handling clauses that generic tools don't ask about. The account deletion requirement alone has a specific implementation pattern that most templates miss. Getting this wrong means rejection — and re-submission adds another 24–72 hours.
Inside the community, we go through the exact setup for Supabase apps — the specific policy clauses you need, how to wire up in-app account deletion, and the nutrition label entries that always trip people up. 30 minutes when you know what you're doing. Days when you don't.
The next step
21 Day App Launch
This is a lot to figure out alone.
Most people stall not because they can't build — but because they hit a wall and have nobody to ask. That's what this is built for.
👾
1-on-1 coaching — direct access to Emmanuel
DM me inside the community. I respond. When you hit a wall, you don't Google — you ask the person who already solved it.
🧰
Full App Launch Toolkit — included ($47 value)
14 prompts for every stage of the build, the complete 18-point security checklist, and the 21-day Notion launch timeline. All inside, no extra charge.
🎬
Full video tutorials — app launch and AI tools
Step-by-step walkthroughs on using Cursor, Claude, and Supabase to build and ship a real app. Not slides — screen recordings of the actual build, from setup to App Store submission.
🚀
A room full of builders who are actually shipping
The people inside have live apps or are days away. That environment matters more than most people realize.
😊
🧑
👩
🙂
Builders from 25+ countries — complete beginners to founders with live apps
$197
$97
/month
Special launch price. Cancel any time. No contracts.
Join — $97/mo → Just want the toolkit? $47 one-time →
⚡ Instant access
🔒 Secure checkout
↩️ Cancel anytime
Get 1 on 1 help + Full Guide
Build with people who are shipping. 1-on-1 coaching + full toolkit included. Cancel any time.