mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-06-15 18:36:03 +00:00
aa214223a5
* Adding support for reDocs GUI to Clear Linux Docs repo. 1. Added .tox and MANIFEST to .gitignore 2. Added py rule to make.bat to enable building of bundles.html.txt in Windows 3. Added .tox to exclude_patterns in conf.py 4. Added tox.ini and setup.py support files to project. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Updated setup.py with Clear Linux docs info. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Small adjustment. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com>
30 lines
514 B
Plaintext
30 lines
514 B
Plaintext
#Exluding from the tree the html build files
|
|
source/_build
|
|
# ignore vi temporary files
|
|
*.swp
|
|
*~
|
|
.*~
|
|
|
|
# ignore VS code settings
|
|
.vscode/
|
|
|
|
# ignore .mo translation files
|
|
*.mo
|
|
|
|
# ignore artifacts generated by running make py
|
|
cloned_repo
|
|
bundles.html.txt
|
|
|
|
# ignore the venv, used for running make py
|
|
venv
|
|
|
|
#ignore for reDocs GUI
|
|
.tox
|
|
MANIFEST
|
|
|
|
# ignore artifacts of man page generation
|
|
source/_scripts/_python/manpages/*.rst
|
|
source/reference/manpages
|
|
source/_scripts/_python/manpages/*/
|
|
source/reference/man-pages.rst
|