Документация Sphinx не обновляется после git push - PullRequest
0 голосов
/ 29 декабря 2018

Я хотел бы создать документ веб-сайта по кодированию из моего собственного репозитория Python Git.У меня есть два вопроса, пожалуйста, найдите ниже и любезно помогите мне решить

1. I have directory it'll update continuously each time it's not possible to add .py files into .rst file .
   I need this one to auto update if any new file added or any update on existing file will be reflect in website.

2. And my website documentation is not updating properly .

Пожалуйста, найдите ниже index.rst и code.rst.index.rst:

===========================================

This is the website which helps to prepare you to interview.   

.. toctree::
   :maxdepth: 2
   :caption: Contents:

   code   

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

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

code.rst:

Code Documentation
========================
.. automodule:: data_structure.string_and_list.function
     :members:
...