Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mnms/metavision-documents

Guide for metavision
https://github.com/mnms/metavision-documents

Last synced: 12 days ago
JSON representation

Guide for metavision

Awesome Lists containing this project

README

        

# MetaVision2 서비스에 대한 가이드 문서
- mkdocs 설치
```
pip install -r requirements.txt
```

- 실행
```
mkdocs serve
```

- 배포
```
# MkDocs 사이트 빌드
mkdocs build

cp -rp ./site ../
# gh-pages 브랜치로 전환 (없으면 생성)
git checkout gh-pages

# 이전 파일 삭제
git rm -rf .

# 빌드된 파일 복사
cp -rp ../site/* .

# 파일 커밋 및 푸시
git add .
git commit -m "Update site"
git push origin gh-pages --force

# main 브랜치로 돌아가기
git checkout master
```

- 웹 페이지
```
https://mnms.github.io/metavision-documents/
```