arrow_back
Back
The MVP Checklist
An evergreen cheat sheet for identifying the scope of a project.
Quick Summary
This is my evergreen checklist for identifying the scope of an app development project, created incrementally after each project. It's hardly groundbreaking, but man, does it come in handy.
Below is the evergreen checklist I use when assessing the scope of a new project. While no list could be fully comprehensive, this one catches most major factors influencing early, potentially-irreversible design decisions.
Authentication
- Can users create accounts on this app?
- If so, how? Email/Password? Or can they log in with Google, Facebook, etc?
- If not, are users supposed to be able to create, read, update, or delete (CRUD) things?
- If so, they actually do need accounts.
- If not, this app will be read-only and accessible to anyone who downloads it. Recommended only for truly public resources like Google Search.
- Does this app differentiate between internal or external users?
- In other words, is this app something your company will be using to interact with customers? (common examples include customer/client/patient portals).
- It’s important to ask because it fundamentally influences the nature of the app’s architecture. It needs to be designed with this in mind in order to prevent mid-dev rewrites of the auth structure because someone forgot to mention we need to integrate with their Azure organization.
- Besides internal/external, can users have different roles?
- These would be the more commonly known examples of Admin vs Guest, Editor vs Viewer.
- If so, what different permissions does each role give the user?
- I.e. who can perform which CRUD operations?
- Can users interact?
- If so, how? Examples:
- Buyers/sellers (Etsy)
- Friends/Non-Friends (Facebook)
- Followers/Non-followers (BlueSky)
- Subscribers/Unsubscribers (YouTube)
- This question tells me if we need to think about how users appear to each other, whether they should be able to block each other, whether or not they can communicate, do we need reporting/content moderation, etc.
Data
- In your own words, what types of data are being stored in this app?
- Usually, the client will talk in terms of the user’s POV, with answers like “financial information” or “tasks.”
- I handle translating that into “int8” or “jsonb.”
- You mentioned users can store _____ data. What does a ______ record look like?
- In other words, I’m trying to get them to think in terms of fields. For example, if they say users can store “tasks,” I’ll ask “What does a task look like? What are the attributes of a task? For example, each task will have a name, a due date, etc…”
- If they don’t know, that’s what we have product designers for.
- I ask this for each kind of record they mention.
- Some data types are implicit and I’ll consider them required even if they aren’t mentioned.
- For example, if a client’s describing a social media platform, I’ll safely consider each user needs a profile. Or if they’re describing a task manager for organizations to use, I’ll safely assume we need an Organizations table even if they don’t explicitly say so, because it’s a fundamental requisite of the app’s nature.
- Can users share data within the app?
- For example, if I have a task management app, can I share tasks with other users? Which users?
- Can users share data outside the app?
- For example, if I have a task management app, can I send a link to a task to just anyone on the internet, even if they don’t have an account?
- If so, what data? Are there constraints?
- For example, Google Drive lets you share links available to anyone on the internet, but you can control what permissions that link grants (View Only/Commenter/Editor).
- Is any data considered legally sensitive?
- Examples would include medical data, social security numbers, bank account/routing numbers or other financial information.
Storage
- Are users uploading files to this app?
- If so, what types of files? (Y/N)
- Media (Photo, Video, Audio)
- If yes, we’ll talk about what they’re used for and discuss content moderation, security, file size limits, file type limits, and go over storage costs (especially for video).
- If they want to host streaming video I’ll do almost anything to talk them out of it and suggest using Vimeo or something else instead, because the overwhelming majority of clients coming to me do not need their own video hosting service.
- Code (.json, .ts, .py)
- If yes, I put a huge red exclamation point next to it in my notes reminding me to run it past the actual back-end experts who can help me identify potential security vulnerabilities.
- Documents (Word, Pages, PDF)
- Tabular (.csv, .tsv, .xlsx)
- Other (3D models, uncommon application-specific types like .afphoto or .aep)
- Can users download their own files?
- No one has ever said no to this, but I ask anyway.
- Can users download each others’ files?
- If so, are there limits? What does that look like?
- Is it like Google Drive where you share something with another user first?
- Or is it like each user has their own public bucket for offering free downloads, etc?
- Can users share files within/outside the app?
Ecommerce
- Can users use your app for free? Y/N
- Can users pay your company through the app?
- If so, what are they paying for?
- Subscription for license to use the app?
- Products purchased through the app?
- Metered use of the app?
- Can users buy/sell from each other on the app?
- What are they buying/selling?
- Subscriptions? (Nebula)
- Digital goods? (Gumroad)
- Physical goods? (Etsy)
- Hotel reservations?
- Flights?
- Who’s responsible for customer service?
- I.e. if a user has a complaint about something they bought, how do they resolve it? Do they come to you? How? Via live chat? VOIP? Email?
- Does your business already have an Ecommerce solution that needs integration with this app?
- (Lots of businesses will already have Shopify, for example).
- Does this app serve users in more than one country?
- If so, we’ll have to handle currency exchange.
- Does this app support payments with cryptocurrency?
- If so, apologies in advance to our legal team
- Do you have an SMTP solution for transactional emails?
- Is it different from the one we’re going to use for Auth flows?
Other Integrations
- Does this application connect or integrate with any third-party API’s?
- If yes, are any of them used for:
- Analytics? If so, what are they? (good to know for cookie consent)
- Ads/Marketing? (good to know for cookie consent)
- Data fetching?
- Will this application have its own API?
- If so, can anyone use it?
- Can users generate their own API keys?
- Are there public vs private keys?
- Is usage of the API rate-limited?
- Do you already have specific rate limits in mind?
- Will it integrate with visual automation platforms like Zapier or Make?
Misc
- Are there any core features of this application that have not been addressed in the previous questions?