Live data from Hacker News

Ask HN: How to Improve the Development Efficiency?

news.ycombinator.com

1–3 of 3 posts

Re: Ask HN: How to Improve the Development Efficiency?

#2
At my work we use GitHub to manage all of our code repositories and GitHub Actions for CI/CD. GitHub is already familiar to a large number of developers and makes it easier for them to get started. My team mostly builds webapps, so we have also leveraged VS Code dev containers. This allows all team members to be coding in the same containerized dev environment in Docker with the same setup. GitHub and VS Code containers have dramatically helped reduce our onboarding time.

Re: Ask HN: How to Improve the Development Efficiency?

#3
post #2

At my work we use GitHub to manage all of our code repositories and GitHub Actions for CI/CD. GitHub is already familiar to a large number of developers and makes it easier for them to get started. My team mostly builds webapps, so we have also leveraged VS Code dev containers. This allows all team members to be coding in the same containerized dev environment in Docker with the same setup. GitHub and VS Code contain…

Thanks for sharing the experience of your team!