> ## Documentation Index
> Fetch the complete documentation index at: https://notes.enesbaspinar.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Summary

<img src="https://learning.oreilly.com/api/v2/epubs/urn:orm:book:9781098157234/files/images/Cover.jpg" width="200" class="m-0" />

**Team Topologies**; dört temel ekip tipi ve üç ekip etkileşim modeline
dayanan, Conway yasasını göz önünde bulundurarak yazılım geliştirme
organizasyonunun tasarımını ele alan bir modeldir.

## Four Team Types

<div>
  {[
      {
        title: "Stream-aligned team",
        description:
          "Tek bir ürüne, servise ya da özellik kümesine odaklanan ekiptir. Her ekip full-stack ve full-lifecycle'dır: frontend, backend, database, business analysis, feature prioritization, UX, testing, deployment, monitoring yani yazılım geliştirmenin tüm aşamalarından sorumludur.",
      },
      { title: "Enabling team", description: "???" },
      { title: "Complicated-subsystem team", description: "???" },
      { title: "Platform team", description: "???" },
    ].map(({ title, description }, i, list) => (
      <div class={`relative flex items-start ${i !== 6 ? "pb-2" : ""} ml-4`}>
        {i < list.length - 1 && (
          <div class="absolute w-px h-[calc(100%-2.75rem)] top-[2.75rem] bg-gray-200/70 dark:bg-white/10" />
        )}
        <div class="absolute ml-[-14px] py-2">
          <div class="w-7 h-7 shrink-0 rounded-lg bg-gray-100 dark:text-white dark:bg-[#26292E] text-sm text-gray-800 font-semibold flex items-center justify-center">
            {i + 1}
          </div>
        </div>
        <div class="w-full overflow-hidden pl-12 pr-px">
          <span id="bes" class="block mt-2 -ml-4 font-bold">
            {title}
          </span>
          <span
            class={`block mt-2 -ml-4 ${i !== 6 ? "pb-2" : ""}`}
            dangerouslySetInnerHTML={{ __html: description }}
          ></span>
        </div>
      </div>
    ))}
</div>

## Resources

<div>
  {[
      {
        description:
          "Team Topologies: Organizing Business and Technology Teams for Fast Flow by Matthew Skelton and Manuel Pais",
      },
      {
        description: "Team Topologies by Martin Fowler",
      },
    ].map(({ title, description }, i, list) => (
      <div class={`relative flex items-start ${i !== 6 ? "pb-2" : ""} ml-4`}>
        {i < list.length - 1 && (
          <div class="absolute w-px h-[calc(100%-2.75rem)] top-[2.75rem] bg-gray-200/70 dark:bg-white/10" />
        )}
        <div class="absolute ml-[-14px] py-2">
          <div class="w-7 h-7 shrink-0 rounded-lg bg-gray-100 dark:text-white dark:bg-[#26292E] text-sm text-gray-800 font-semibold flex items-center justify-center"></div>
        </div>
        <div class="w-full overflow-hidden pl-12 pr-px">
          <span class="block mt-2 -ml-4 font-bold">{title}</span>
          <span
            class={`block mt-1 -ml-4 ${i !== 6 ? "pb-2" : ""}`}
            dangerouslySetInnerHTML={{ __html: description }}
          ></span>
        </div>
      </div>
    ))}
</div>
