Skip to content

Pseudo-Lab/mlops-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

82c4aae · Dec 7, 2022

History

34 Commits
Sep 4, 2022
Sep 18, 2022
Sep 15, 2022
Dec 7, 2022
Sep 18, 2022
Nov 27, 2022
Sep 1, 2022

Repository files navigation

MLOps Docs

(1) Install

pip install sphinx
pip install sphinx_rtd_them

(2) 내용 추가

source
├── TEST # 추가
│   ├── TEST_1.md # 추가
│   └── TEST_2.md # 추가
├── _static
├── _templates
├── conf.py
├── favicon.ico
└── index.rst
// source/index.rst

.. toctree::
   :maxdepth: 2
   :caption: TEST: // 목차 이름

   A/a_1.md // 내용
   A/a_2.md // 내용
source/index.rst

.. toctree::
   :maxdepth: 2
   :caption: TEST: 

   TEST/TEST_1.md 
   TEST/TEST_2.md 


Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

(3) 문서 빌드

cd docs
make html