Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
stop68673yAn local nginx that has an catchall for localhost and *.localhost.localdomain
The rest depends on language itself. -
C0D4681463yA VM that mirrors production as closely as possible.
Using RemoteSSH with vsCode let's me build on the vm as if it was a local folder. -
lime00823yJust a bunch of docker containers. I have some shared services like puppeteer for pdf generation and mailhog for email testing and then all the projects have their own requirements and docker compose files. Most of the time everything is just running on docker with hot reloading like nodemon for js or air for golang. I do sometimes debug bits and pieces directly tho. For real life testing telepresence and network splits are a life saver when you can forward live traffic from the cluster to your locally running process. But still docker.
What are you using for local environment? I'm stuck on xampp for 10 years. I realized that I'm having terrible pipeline from developing to production.
question