Skip to content

Commit 9d11c15

Browse files
committed
chore(site): 운영 도메인 ark-log 적용
ark-log.vercel.app을 기본 운영 URL로 설정하고 resume와 README 링크를 갱신했어요. Repository rename에 맞춰 Giscus repo 연결도 dev-wooyeon/ark로 정리했어요.
1 parent a981ea1 commit 9d11c15

5 files changed

Lines changed: 17 additions & 15 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77

88
아크는 오래 건너갈 생각들을 싣는 개인의 방주입니다.
99

10-
[라이브 데모](https://eunu-log.vercel.app)
10+
[라이브 데모](https://ark-log.vercel.app)
1111

1212
</div>
1313

14-
운영 URL은 `NEXT_PUBLIC_SITE_URL`로 주입할 수 있습니다. Vercel project와
15-
repository rename이 끝나기 전까지 기본값은 현재 Vercel 배포 도메인을
16-
사용합니다.
14+
운영 URL은 `NEXT_PUBLIC_SITE_URL`로 주입할 수 있습니다. 기본 운영 도메인은
15+
`https://ark-log.vercel.app`입니다.
1716

1817
브랜드 표기는 영문 `Ark`, 한글 `아크`로 고정합니다. package, repository,
1918
Vercel project 같은 기술 식별자에는 소문자 `ark`를 사용합니다.

blog/ui/components/GiscusComments.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ export function GiscusComments({ slug }: GiscusCommentsProps) {
2020
const giscusTheme = resolvedTheme === 'dark' ? 'dark' : 'light';
2121

2222
useEffect(() => {
23-
const iframe = document.querySelector<HTMLIFrameElement>('iframe.giscus-frame');
23+
const iframe = document.querySelector<HTMLIFrameElement>(
24+
'iframe.giscus-frame'
25+
);
2426
if (!iframe) return;
2527

2628
iframe.contentWindow?.postMessage(
@@ -44,7 +46,7 @@ export function GiscusComments({ slug }: GiscusCommentsProps) {
4446
<Giscus
4547
key={`${slug}-${giscusTheme}`}
4648
id="comments"
47-
repo="dev-wooyeon/eunu-log"
49+
repo="dev-wooyeon/ark"
4850
repoId="R_kgDOQ9dweg"
4951
category="Announcements"
5052
categoryId="DIC_kwDOQ9dwes4C19H1"

docs/adr/0014-use-ark-as-public-site-identity.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,19 @@ Status: Accepted
2323
- 패키지 이름은 배포 가능한 Vercel project name 규칙과 맞게 기술 식별자
2424
`ark`를 사용한다.
2525
- 설명 문구는 "오래 건너갈 생각들을 싣는 개인의 방주"를 기준으로 한다.
26-
- 사이트 URL은 `NEXT_PUBLIC_SITE_URL`로 주입할 수 있게 하고, 외부 Vercel
27-
project/domain rename 전까지는 기존 운영 도메인을 기본값으로 둔다.
28-
- 작성자 정체성, GitHub 계정, Giscus repository 연결은 운영 리소스 rename이
29-
끝나기 전까지 기존 값을 유지한다.
26+
- 사이트 URL은 `NEXT_PUBLIC_SITE_URL`로 주입할 수 있게 하고, 기본 운영
27+
도메인은 `https://ark-log.vercel.app` 둔다.
28+
- 작성자 정체성과 GitHub 계정은 기존 값을 유지하되, repository와 Giscus 연결은
29+
`dev-wooyeon/ark`를 사용한다.
3030

3131
## 결과
3232

3333
- metadata, RSS, OG image, footer, README에서 공개 이름이 `Ark` 또는 `아크`
3434
일관된다.
35-
- 외부 도메인과 댓글 시스템은 실제 rename 전에 깨지지 않는다.
36-
- Vercel project를 `ark`로 rename하거나 custom domain을 붙이면
37-
`NEXT_PUBLIC_SITE_URL`만 갱신해 canonical URL을 바꿀 수 있다.
35+
- Vercel project, GitHub repository, Giscus repository 이름이 `ark`
36+
정렬된다.
37+
- 운영 도메인을 바꿀 때는 `NEXT_PUBLIC_SITE_URL`만 갱신해 canonical URL을
38+
바꿀 수 있다.
3839
- 기존 motion 설정은 `ark:*` storage key로 이동하되, 기존 `eunulog:*` 값을
3940
읽어 사용자 설정을 보존한다.
4041

resume/model/resume-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const personalInfo: PersonalInfo = {
1515
email: 'une@kakao.com',
1616
phone: '+82 01029139706',
1717
github: 'https://github.com/dev-wooyeon',
18-
blog: 'https://eunu-log.vercel.app',
18+
blog: 'https://ark-log.vercel.app',
1919
skillGroups: [
2020
{
2121
category: '언어',

site/config/site.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const DEFAULT_SITE_URL = 'https://eunu-log.vercel.app';
1+
const DEFAULT_SITE_URL = 'https://ark-log.vercel.app';
22

33
export const SITE_BRAND = {
44
englishName: 'Ark',

0 commit comments

Comments
 (0)