• sylver_dragon
    link
    English
    561 month ago

    Every site has a dev environment, some are lucky enough to have a separate production one.

  • slazer2au
    link
    English
    491 month ago

    Oooh, look at Mr fancy with a seperate Dev/prod environment.

  • @Vinny_93
    link
    371 month ago

    Dev is a messy playground several months behind prod

    • raver
      link
      fedilink
      Deutsch
      401 month ago

      Dev is a messy playground several months ahead of prod 😁

        • @[email protected]
          link
          fedilink
          9
          edit-2
          1 month ago

          They’re referring to the tendency to reload the dev environment from production a couple times each year, while production is being tweaked daily without any record of changes applied.

          Remember, however bad our own shop is, someone out there puts up with crap that even our own team doesn’t have to put up with.

          • @SpaceNoodle
            link
            31 month ago

            My point is that cowboying changes into prod is bad practice.

            • @[email protected]
              link
              fedilink
              41 month ago

              Lol. Yeah. Your point stands.I’m not disagreeing with or trying to correct you. Sorry if my comment came across that way.

              I’m just trying to commiserate that cowboying changes into production is so common that it is some folk’s work reality, even on well run teams - i.e. when their peer’s teams are poorly run.

              • @SpaceNoodle
                link
                21 month ago

                That is when you cast the team into the fire

      • @marcos
        link
        51 month ago

        Well, is some mix of alternative futures that may or may not pan-out on reality.

  • HubertManne
    link
    fedilink
    171 month ago

    last place I worked had an environment refered to as poc/staging. poc. staging. these are supposed to be as far apart as possible in a non prod environment not combined.

  • @steventhedev
    link
    15
    edit-2
    1 month ago
    When I was a young dev
    My senior took me into the city
    To push my code to prod
    He said "Son, when you promo
    Would you be the savior of the broken
    The buggy and the OOM'd?"
    
  • @[email protected]
    link
    fedilink
    91 month ago

    This is what feature flags are for. You can test in production to your hearts content if you use them!

    • @[email protected]
      link
      fedilink
      131 month ago

      Yeah. Warning - uninvited poetic waxing on feature flags and leadership choices, incoming…

      We all agree we inevitably do some live testing at our customers risk, because no test environment is perfect.

      With feature flags, we’re able to negotiate how many of our customers to test on, at a time.

      But some of us prefer to forgo feature flags and risk our entire customer base on every change. It saves money, at least for a little while.

      I’m not exactly fun at executive leadership meetings, but somehow I keep getting invited to them. Heh.

  • @[email protected]
    link
    fedilink
    English
    01 month ago

    The first sign that the company you just joined is amateur hour, every hour of the day, every day of the year is that they don’t have a Staging environment.

      • @[email protected]
        link
        fedilink
        English
        123 days ago

        I’ve seen, again an again, deploying to Staging and integration testing in that Production-like environment together with the software of other teams, reveal problems that we did not saw in Dev, thus saving us from deploying into Production software that broke or, worse, corrupted the database.

        This was certainly very important when I worked in environments such as Investment Banking where Production being down because of integration issues or, worse, sending bad data to other systems or the database having to be rolled back to the overnight backup, might mean the business losing millions of dollars.

        It’s not a foolproof mechanism but it certainly catches most integration problems, which are often most of the problems in complex environments where multiple teams are responsible for multiple highly integrated software systems,

        Granted, little teams doing small software systems in simple environments were their software has little or no integration with other software, can probably get away with not having a Staging environment if their Dev environments has the same setup as Production (same OS, same database and so on) since they’re going to have very little in the way of Integration problems with other people’s software.