Skip to content

Commit

Permalink
🐛 fix: fix docs broken link (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
seonghun-dev committed Nov 8, 2023
1 parent c31d149 commit 2d79f57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const config = {
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`,
copyright: `Copyright © ${new Date().getFullYear()} StreetDrop.`,
},
prism: {
theme: lightCodeTheme,
Expand Down
12 changes: 6 additions & 6 deletions docs/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,32 @@ const callouts: Callout[] = [
{
title: "비즈니스",
text: "유저 행동 로깅과 어드민 페이지를 통해, 사용자의 행동을 분석하고, 통계를 내며 서비스를 개선해나가고 있습니다.",
link: "/street-drop-server/docs/intro",
link: "/docs/intro",
},
{
title: "모니터링",
text: "프로메테우스 및 그라파나를 통해 서비스의 상태 모니터링과 500대 에러 Slack 알림, 슬로우 쿼리 모니터링 등을 통해서, 서비스의 안정성을 높이고 있습니다.",
link: "/street-drop-server/docs/intro",
link: "/docs/intro",
},
{
title: "설계",
text: "API 서버, Admin 서버, Batch 서버, 알림 서버 등을 분리하여, 서비스의 안정성과 확장성을 높이고 있습니다.",
link: "/street-drop-server/docs/intro",
link: "/docs/software-design-description/Intrduction",
},
{
title: "문서화",
text: "Swagger를 통해 API 문서를 자동화하고 있습니다.",
link: "/street-drop-server/docs/intro",
link: "https://test-api.street-drop.com/swagger",
},
{
title: "로그",
text: "ELK를 통해 서비스의 로그를 수집하고 있습니다.",
link: "/street-drop-server/docs/intro",
link: "/docs/intro",
},
{
title: "성능",
text: "JMeter를 통해 서비스의 성능을 측정하고 있습니다.",
link: "/street-drop-server/docs/intro",
link: "docs/software-requirement-specification/preformance-requirements",
},
];

Expand Down

0 comments on commit 2d79f57

Please sign in to comment.