Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
.DS_Store
site
.idea/*
.python-version
venv/
docs/versions.json
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,15 @@ MkDocs를 다음의 명령을 이용해 설치합니다.
```
$ pip install mkdocs
```
### Docs Theme 설치
### MkDocs Plugin 설치

Ablestack Docs 사이트는 MkDocs의 Third Party 테마인 Material Theme을 사용합니다. 해당 테마를 개발환경에 설치하여 테마를 적용해야 합니다.
Ablestack Docs 사이트는 MkDocs의 Third Party Plugin인 Material Theme 및 버전별 문서관리 plugin mike를 사용합니다.
해당 Plugin을 개발환경에 설치하여 적용해야 합니다.

다음의 명령을 개발환경에서 실행합니다.

```
$ pip install mkdocs-material
$ pip install mkdocs-material mike
```
## 개발 참여

Expand Down
20 changes: 10 additions & 10 deletions docs/administration/mold/account-mngt-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,16 @@ so on

옵션 :

|<center>옵션</center>|<center>내용</center>|
|:---|:---|
|-b DB|데이터베이스 이름, 기본값 : 클라우드|
|-u USER|사용자 이름은 클라우드 데이터베이스에 대한 권한이 있는 MySQL 사용자입니다. 기본값 : cloud|
|-p PASSWORD|클라우드 데이터베이스에 대한 권한이 있는 MySQL 사용자의 비밀번호|
|-H HOST|MySQL 서버의 호스트 또는 IP|
|-P PORT|MySQL 서버의 호스트 또는 IP, 기본값 : 3306|
|-f FILE|commands.properties 파일, 기본값 :<br/>/etc/cloudstack/management/commands.properties|
|-d|이 도구가 수행할 테스트 실행 및 디버그 작업|
|-D|동적 역할에 대한 기본 구성 사용 (command.properties를 가져 오지 않음)|
| <center>옵션</center> | <center>내용</center> |
|:--------------------|:---------------------------------------------------------------------------------|
| -b DB | 데이터베이스 이름, 기본값 : 클라우드 |
| -u USER | 사용자 이름은 클라우드 데이터베이스에 대한 권한이 있는 MySQL 사용자입니다. 기본값 : cloud |
| -p PASSWORD | 클라우드 데이터베이스에 대한 권한이 있는 MySQL 사용자의 비밀번호 |
| -H HOST | MySQL 서버의 호스트 또는 IP |
| -P PORT | MySQL 서버의 호스트 또는 IP, 기본값 : 3306 |
| -f FILE | commands.properties 파일, 기본값 :<br/>/etc/cloudstack/management/commands.properties |
| -d | 이 도구가 수행할 테스트 실행 및 디버그 작업 |
| -D | 동적 역할에 대한 기본 구성 사용 (command.properties를 가져 오지 않음) |

예 :

Expand Down
Loading