Hacker News new | past | comments | ask | show | jobs | submit login

Ah that makes more sense now. So you're basically writing docs for all these different tools such that someone can copy paste and get a working installation.

What are your thoughts on docker which seems to do something similar? Also, how would you stay updated on every single framework if they ever change their installation scripts or other such parts?




I wouldn't say that Docker is doing something similar. What I want to do is give a one-page overview of the web framework landscape.

Since I envision the scripts to be very small, I expect that updating them will not take long. The history of the updates will indeed be very interesting. In 10 years we can look at it and see how often each framework had breaking changes.


Makes sense. I mean docker as in dockerfiles which are essentially scripts that create the docker image as a full environment.


Yes, Dockerfiles usually set up an environment suitable for certain tasks.

So instead of using debian:11-slim as I propose, one could use a Dockerfile made for Django. But that would help very little. Django even abandoned their official Dockerfile because it brings so little to the table.

In my opinion, using a higher level Dockerfile than the bare OS is a net negative. The developer won't know how much magic it hides. Even though it just hides a few lines of code. And being higher up in the stack also means stuff will break more often and the scripts need to be updated more often.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: