Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

๐Ÿฉน ์ž๋ฃŒ๋ณด๊ฐ• #203

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions frontend/lecture/src/lectures/Infrastructure/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const infrastructureLecture = getLectureItem({
<p className="ml-6 text-base opacity-50">
์™œ๋ƒ๋ฉด ์™€ํ”Œ์—์„œ๋Š” ๋ฒ„์…€์„ ๋ชป์จ์š”..
</p>
<p>GitHub Actions ๋กœ CD ๊ตฌ์ถ•ํ•˜๊ธฐ</p>
<p>GitHub Actions ๋กœ ๋ฐฐํฌ ํŒŒ์ดํ”„๋ผ์ธ ๊ตฌ์ถ•ํ•˜๊ธฐ</p>
<p>Next.js ๋Š” ์ด๋ ‡๊ฒŒ ๋ฐฐํฌ ๋ชป ํ•œ๋‹ค๋Š” ๊ฑฐ ์ธ์ง€ํ•˜๊ธฐ</p>
</div>
),
Expand Down Expand Up @@ -218,7 +218,7 @@ export const infrastructureLecture = getLectureItem({
),
},
{
title: 'CD ๊ตฌ์ถ•',
title: '๋ฐฐํฌ ํŒŒ์ดํ”„๋ผ์ธ ๊ตฌ์ถ•',
content: (
<ul className="ml-8 flex list-disc flex-col gap-5 text-xl">
<li>์ฝ”๋“œ๋ฅผ ์—…๋ฐ์ดํŠธํ–ˆ์œผ๋ฉด ์‚ฌ์ดํŠธ์—๋„ ๋ฐ˜์˜์ด ๋˜์–ด์•ผ ํ•œ๋‹ค</li>
Expand All @@ -234,16 +234,22 @@ export const infrastructureLecture = getLectureItem({
title: '์šฐ๋ฆฌ๋Š” ์ง€๊ธˆ๊ป ๊ณ„์† GitHub Actions๋ฅผ ์จ์™”์Šต๋‹ˆ๋‹ค',
content: (
<div className="flex flex-col gap-4">
<ExternalLink
href="https://github.com/features/actions"
label="GitHub Actions๋ž€?"
/>

<ExternalLink
label=".github/workflows/ci.yml"
href="https://github.com/wafflestudio/seminar-2024-frontend-template/blob/main/.github/workflows/ci.yml"
/>
<p>๋น„์Šทํ•œ ๋Š๋‚Œ์œผ๋กœ cd.yml์„ ๋งŒ๋“ค๋ฉด ๋œ๋‹ค</p>

<p>๋น„์Šทํ•œ ๋Š๋‚Œ์œผ๋กœ deploy.yml์„ ๋งŒ๋“ค๋ฉด ๋œ๋‹ค</p>
</div>
),
},
{
title: 'cd.yml์„ ์–ด๋–ป๊ฒŒ ๊ตฌ์„ฑํ•˜์ง€?',
title: 'deploy.yml์„ ์–ด๋–ป๊ฒŒ ๊ตฌ์„ฑํ•˜์ง€?',
content: (
<div className="flex flex-col gap-4">
<Callout title="์ฃผ์˜">
Expand All @@ -253,7 +259,10 @@ export const infrastructureLecture = getLectureItem({
</Callout>

<ol className="flex list-decimal flex-col gap-2 pl-6">
<li>ํƒœ๊ทธ ํ‘ธ์‹œ ์‹œ ๋ฐœ๋™</li>
<li>
ํƒœ๊ทธ ํ‘ธ์‹œ ์‹œ ๋ฐœ๋™ (์ปจ๋ฒค์…˜: <InlineCode code="(dev|prod)-*" />)
</li>
<li>ํ”„๋กœ์ ํŠธ๋ฅผ ๋นŒ๋“œํ•˜์—ฌ ์ •์  ํŒŒ์ผ ์ƒ์„ฑ</li>
<li>S3์— ํŒŒ์ผ์„ ์—…๋กœ๋“œ</li>
<li>CloudFront์— ์บ์‹œ๋ฅผ ๋ฌดํšจํ™”</li>
</ol>
Expand All @@ -268,7 +277,7 @@ export const infrastructureLecture = getLectureItem({
),
},
{
title: 'cd ๊ตฌ์ถ• A to Z ๋ผ์ด๋ธŒ์ฝ”๋”ฉ',
title: 'deploy ๊ตฌ์ถ• A to Z ๋ผ์ด๋ธŒ์ฝ”๋”ฉ',
content: (
<div className="flex flex-col gap-4">
<p>์‹ค์‹œ๊ฐ„์œผ๋กœ ๋”ฐ๋ผํ•ด์ฃผ์…”๋„ ๋˜๊ณ  ๋…นํ™” ๋ณด๋ฉด์„œ ๋”ฐ๋ผํ•˜์…”๋„ ๋ฉ๋‹ˆ๋‹ค</p>
Expand Down
Loading