TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How long does it take you to deploy?

8 点作者 jgautsch将近 10 年前
And how often do you deploy? Would love to hear about different stacks, stages of product&#x2F;company, how often you push to prod, and especially how long it takes from start to finish<p>I&#x27;ll start- right now our large but fairly vanilla Rails app takes about 15 minutes: 5 minutes for tests on CI to pass, then 10 minutes for deploy (mostly because of asset compilation time).

3 条评论

MalcolmDiggs将近 10 年前
About 10 minutes.<p>My flow typically looks like: Github &gt; CodeShip &gt; Live Servers &gt; Update sent back to Github<p>The vast majority of the time-lag is for the tests to run on CodeShip. Hot deploying the changes (since they&#x27;re often only small&#x2F;incremental changes) only takes a few seconds.<p>And this is usually a MEAN&#x2F;MEAN-like stack running on CENTOS.
smartician将近 10 年前
Major deals website. We deploy once a week. Merging changes to the release branch takes 1-2 hours (depending on how many conflicts there are), the build itself takes 10-20 minutes. Black-box testing takes about a day (2-5 QA working on it). The deployment itself takes 10-60 minutes (copying files to all load-balanced instances, running data schema and function&#x2F;stored proc updates, running data update scripts manually).
Spoom将近 10 年前
Multiple times per day via a web interface that runs Chef (atomic) deployment recipes. The deployment itself takes about ten seconds. We&#x27;re a mostly PHP web development shop.<p>We also have mobile apps that have a different but still largely automated build process.