|
|
|
Ask HN: Fastest way to get a web app from 0 to 60
|
|
4 points
by v3rt
4832 days ago
|
|
Hey everyone, I'm a college student in CS and aspiring startup founder. I've stumbled upon a problem I want to solve, and I believe that the best way to test this idea's feasibility is to get a v1 launched and exposed to users ASAP (most likely my college campus to get started). However, I've been focusing on coursework and ML stuff over the last few years, so the last time I did web application development, it was in raw LAMP, and I know the technology du jour has changed. Since I know Python, I've been looking a bit into using Django or Google App Engine to get a first version running (since I know Python already but not Ruby), but I'd apprecate any advice on what would be the most frictionless way to get something, anything, running. Also, does anyone have any tips on where to find/buy templates/design packages so the site looks decent without having to actually hire a designer? Thanks - any input from those more experienced is much appreciated. |
|
I would go for Python + Django. Avoid Google App Engine. There are big gotchas with using Django and GAE. You essentially have to throw out the Django ORM because Google places restrictions on what SQL queries you can use (for scalability reasons, none of which are your concern for an MVP or even a moderately sized startup). You can avoid this using Google Cloud SQL, but then you have to use MySQL. PostgreSQL is recommended by most of the Django community. You are better off using something like Heroku (which has great documentation). You can either use Twitter Bootstrap (maybe tweak the defaults with something like Jetstrap), or use a template off themeforest or woothemes. If you use a theme, you'll have to tweak the HTML to make them work with Django's templating.
The problem with Wordpress is that unless you're doing a plain vanilla ecommerce site or some other limited choices, there are many kinds of MVPs you would not be able to build with it. Not to mention that you would be rewriting everything eventually if you use Wordpress.
Using meteor and node.js cover different product use cases (real-time apps or apps with a lot of connections). So it depends on your product. Keep in mind that meteor is not mature yet.