TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Rails users, what is your release process?

2 pointsby tistoonalmost 5 years ago
How do you release a new version of your product? Do you just git pull? Do you zip? Do you rsync?<p>Thanks!

1 comment

seracuzaalmost 5 years ago
Forget about zip and rsync, it&#x27;s a 1990-x era.<p>Theare 3 options in 2020:<p>Manually from laptop:<p>1) Heroku (git push)<p>2) Capistrano (use ssh to copy files)<p>3) Docker images (git push)<p>Automatically:<p>1) Trigger by CI&#x2F;CD (git pull)