Skip to content

Commit

Permalink
refactor: split dev and user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
dotoleeoak committed May 11, 2024
1 parent dbfbf50 commit 3f3a1ca
Show file tree
Hide file tree
Showing 38 changed files with 79 additions and 71 deletions.
142 changes: 75 additions & 67 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,80 +39,88 @@ export default defineConfig({
},
nav: [
{
text: 'Guide',
link: '/intro/'
text: 'For Developers',
link: '/dev/intro/'
},
{
text: 'For Users',
link: '/user/login'
},
{
text: 'Codedang',
link: 'https://codedang.com'
}
],
socialLinks: [{ icon: 'github', link: 'https://github.com/skkuding/next' }],
sidebar: [
{
text: 'Introduction',
items: [
{
text: '코드당이 뭔가요?',
link: '/intro/'
},
{
text: '시작하기',
link: '/intro/getting-started'
},
{
text: 'Contributing Guide',
link: 'https://github.com/skkuding/next/blob/main/CONTRIBUTING.md'
},
{
text: 'API 문서',
link: '/intro/bruno'
}
]
},
{
text: 'Project',
items: [
{
text: '기술 스택',
link: '/project/tech-stack'
},
{
text: '프로젝트 구조',
link: '/project/hierarchy'
},
{
text: '배포 과정',
link: '/project/deploy'
},
{
text: 'Staging vs Production',
link: '/project/stage-server'
},
{
text: 'Project Roadmap',
link: '/project/roadmap'
}
]
},
{
text: '관리자 매뉴얼',
items: [
{
text: '가입 및 로그인',
link: '/group-admin/login'
},
{
text: '그룹 및 멤버 관리',
link: '/group-admin/group'
},
{
text: '문제 생성 및 관리',
link: '/group-admin/problem'
}
]
}
]
sidebar: {
'/dev/': [
{
text: 'Introduction',
items: [
{
text: '코드당이 뭔가요?',
link: '/dev/intro/'
},
{
text: '시작하기',
link: '/dev/intro/getting-started'
},
{
text: 'Contributing Guide',
link: 'https://github.com/skkuding/next/blob/main/CONTRIBUTING.md'
},
{
text: 'API 문서',
link: '/dev/intro/bruno'
}
]
},
{
text: 'Project',
items: [
{
text: '기술 스택',
link: '/dev/project/tech-stack'
},
{
text: '프로젝트 구조',
link: '/dev/project/hierarchy'
},
{
text: '배포 과정',
link: '/dev/project/deploy'
},
{
text: 'Staging vs Production',
link: '/dev/project/stage-server'
},
{
text: 'Project Roadmap',
link: '/dev/project/roadmap'
}
]
}
],
'/user/': [
{
text: '관리자',
items: [
{
text: '가입 및 로그인',
link: '/user/login'
},
{
text: '그룹 및 멤버 관리',
link: '/user/group'
},
{
text: '문제 생성 및 관리',
link: '/user/problem'
}
]
}
]
}
},
vite: {
server: {
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ hero:
alt: Codedang Logo
actions:
- theme: brand
text: Get Started
link: /intro/
text: For Developers
link: /dev/intro/
- theme: alt
text: View on GitHub
link: https://github.com/skkuding/next
text: For Users
link: /user/login

features:
- title: 👍 Easy to use
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3f3a1ca

Please sign in to comment.