Skip to content

Commit

Permalink
add ep67
Browse files Browse the repository at this point in the history
  • Loading branch information
ostretsov committed Aug 31, 2024
1 parent cfc9ac4 commit be0ed8c
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
53 changes: 53 additions & 0 deletions podcast/episodes/2024/67.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<html lang="ru" xmlns="http://www.w3.org/1999/html">
<head>
<title>Backend Podcast: 67. Mono vs Multi Repos: Navigating CI Pipelines</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/modern-normalize.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
<link href="../../css/css.css?2024-08-04" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="other-platforms">
<a href="https://feeds.acast.com/public/shows/64727c07e689970012fb1c23">RSS</a>
<a href="https://t.me/bkndpro">Telegram</a>
<a href="https://www.youtube.com/@ostrbor/videos">YouTube</a>
<a href="https://podcasts.apple.com/us/podcast/backend-podcast/id1732130106">Apple</a>
<a href="https://music.yandex.ru/album/28370806">Яндекс</a>
<a href="https://open.spotify.com/show/6G9K0DrOH2wsEqDKbed01e?si=oQXKuI4tQKqgJj894-2p_A">Spotify</a>
<a href="https://music.amazon.com/podcasts/d797927c-7c90-4d4b-a845-3b61dc25060c/backend-podcast">Amazon</a>
<a href="mailto:[email protected]">Почта</a>
</div>

<hgroup>
<h1>67. Mono vs Multi Repos: Navigating CI Pipelines</h1>
<h2>31.08.2024</h2>
</hgroup>

<p>
<iframe src="https://embed.acast.com/64727c07e689970012fb1c23/66d315e94c501f549669de43?theme=light" frameBorder="0" width="100%" height="190px"></iframe>
<a href="https://bknd.pro/podcast-files/067_backend_podcast.mp3">Скачать</a>
</p>

<p>
<a href="../../index.html">К списку выпусков</a>
</p>

<h4>Использование кеша Docker для ускоренной сборки образа</h4>

<p>До:</p>

<pre>COPY . .
RUN go build</pre>

<p>После:</p>

<pre>COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go build</pre>
</div>
</body>
</html>
11 changes: 11 additions & 0 deletions podcast/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,17 @@ <h1 id="home">Backend Podcast <span class="blinking-square">&nbsp;</span></h1>
<h2>подкаст о разработке бэкенд-приложений</h2>
</hgroup>

<div class="episode">
<h3>
<a href="episodes/2024/67.html">67. Mono vs Multi Repos: Navigating CI Pipelines</a>
<span class="date">31.08.2024</span>
</h3>

📚 Разница между моно и мульти репозиторием. Стоит ли вам использовать моно-репозиторий?
Как триггерить отдельный пайплайн для подпроектов в случае моно/мультирепозитория?
Ускорение сборки Docker образа. Синхронная разработка backend и frontend проекта.
</div>

<div class="episode">
<h3>
<a href="episodes/2024/66.html">66. Go 1.23 iterators, to OSS or not?</a>
Expand Down

0 comments on commit be0ed8c

Please sign in to comment.