Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mnms/metavision-documents
- Owner: mnms
- Created: 2024-07-15T09:53:56.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-12-19T09:30:43.000Z (about 1 month ago)
- Last Synced: 2024-12-19T10:30:13.530Z (about 1 month ago)
- Language: Shell
- Size: 62.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MetaVision2 서비스에 대한 가이드 문서
- mkdocs 설치
```
pip install -r requirements.txt
```- 실행
```
mkdocs serve
```- 배포
```
# MkDocs 사이트 빌드
mkdocs buildcp -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/
```