TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Using Flask for the product

3 pointsby dupa99over 11 years ago
I want to build MVP and I&#x27;m thinking about the tech stack that I should choose. The app will be basic CRUD application that gather data from 100 e-mail and show a report to the user. Later on there will be analytics, sharing etc. B2B, max 2000 Users.<p>My first choice is Flask + Heroku + PostgreSQL. Ideally I want something that is very easy to build MVP, but not totally to throw away later on. Hoodie is interesting, but I need backend.<p>Any Java, Scala, Python, js, Go suggestion?

5 comments

codegeekover 11 years ago
There is obviously no black or white answer for this but I would say go for it using Flask + heroku + PostgreSQL. Flask is excellent in terms of rapid prototyping and even though it does not come with batteries included like other bigger frameworks, it makes up for it through its excellent Extension Ecosystem. Check out Flask-SQLAlchemy, Flask-Login, Flask-WTForms, Flask-Scripts etc. Excellent documentation for everything. I have not used Heroku personally yet but they do offer free tier.<p>I am pretty sure that flask is not a throwaway framework. Lately on Stackoverflow careers, I see a few companies using flask in production if that&#x27;s one way to measure it. See this <a href="http://careers.stackoverflow.com/jobs?searchTerm=flask" rel="nofollow">http:&#x2F;&#x2F;careers.stackoverflow.com&#x2F;jobs?searchTerm=flask</a>
NathanRiceover 11 years ago
Honestly, I would either choose Python or a JVM language.<p>The nice thing about Python is that the library support is amazing, and there is a fairly easy path to performance improvements using PyPy and&#x2F;or wrapped C code.<p>Obviously a JVM language will have a huge ecosystem of libraries and good performance out of the box. I prefer Python as a language but that is entirely personal.<p>While Go is really popular around here, the language doesn&#x27;t have a very ecosystem of libraries.
bjoernsover 11 years ago
We use Flask + MongoDB + Heroku at Spreadgit (<a href="http://www.spreadgit.com" rel="nofollow">http:&#x2F;&#x2F;www.spreadgit.com</a>). Was meant to serve as an MVP initially but so far it&#x27;s been awesome. as your project grows you can replace your module with packages etc. if you&#x27;re going with PostgreSQL maybe it&#x27;s worthwhile looking at Flask-SQLAlchemy?
lumensover 11 years ago
We use Flask in production at Mighty Spring (<a href="https://www.mightyspring.com" rel="nofollow">https:&#x2F;&#x2F;www.mightyspring.com</a>). What started as a simple MVP has become a fully-featured web app and Flask has been great to work with along the way.
评论 #6534838 未加载
gpsarakisover 11 years ago
You could also consider Google AppEngine <a href="https://developers.google.com/appengine/docs/python/" rel="nofollow">https:&#x2F;&#x2F;developers.google.com&#x2F;appengine&#x2F;docs&#x2F;python&#x2F;</a>