开发者

In general what's the difference in dev. vs staging part of website? [closed]

开发者 https://www.devze.com 2023-03-18 05:38 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago. 开发者_如何学Go

What's code wise the difference between dev and staging fase of a website?

I mean dev <-> live, than live all code is clean/minimized, right?

Any info, real life "code" part examples?


dev

  • No compressed/minified/etc. code
  • Likely to be separate for each developer
  • Not updated from VCS but the code that resides there is committed at some point
  • May contain not-working code (usually yet uncommitted)

staging

  • Updated from VCS
  • Should have the exactly same setup (lib versions etc) as production
  • Testing setup for code that is supposed to go in production
  • Some code is likely to be minified to see if it breaks anything.

production

  • Well.. production ;)
0

精彩评论

暂无评论...
验证码 换一张
取 消