←back to thread

16 points rohan2003 | 1 comments | | HN request time: 0s | source

Hi everyone, for last 7 months, I have been learning all the attempts made to eliminate codebase environment setups.

Here's my product which is a leap in the same direction and will help you run any codebase on relevant machine.

Check it out on gitarsenal.dev/ and we got ranked 6th on Product Hunt as well.

Show context
JojoFatsani ◴[] No.46091980[source]
Or, Docker
replies(1): >>46093059 #
rohan2003 ◴[] No.46093059[source]
The unsolved part: reliable, automated setup that works across the long tail of repos without human intervention. Docker helps but doesn't solve it (many repos don't have working Dockerfiles, and building those is itself a setup problem).
replies(1): >>46103156 #
JojoFatsani ◴[] No.46103156[source]
I dunno, I find it pretty easy to ask Claude or Cursor to make a portable dockerfile to run a python app locally or in a hosted environment.
replies(1): >>46104326 #
1. rohan2003 ◴[] No.46104326[source]
but dockerfile is not the complete setup you need to configure a lot of other things, and in a lot of cases dockerfile is not even getting generated correctly, try out gitpod they generate devcontainer.json which is a standard format across different platforms, but generating a devcontainer.json or Dockerfile has never been easy for agents specially when the repositories are complex.