Skip to content

Robot-Dreams-RO/build_the_bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction to DevOps documentation

Documentation is made using Sphinx, to build it:

  1. Create and init a virtual environment

    python3.11 -m venv venv
    source venv/bin/activate
  2. Install Python dependencies

    pip install -r requirements.txt
  3. Build documentation

    make html
  4. To read the documentation - open explorer.exe

    explorer.exe .

To have documentation available on GitHub pages you need to copy the files from build/html to docs (limitation from gh-pages) then will pick the index.html

rm -rf docs/* && cp -R build/html/* docs/ && touch docs/.nojekyll 

About

Learn how to build Python bots

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published