Skip to content

Commit

Permalink
Here be dragons!
Browse files Browse the repository at this point in the history
  • Loading branch information
enclaved committed Nov 18, 2023
0 parents commit b127fa0
Show file tree
Hide file tree
Showing 30 changed files with 3,261 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*~
*.swp

_build
25 changes: 25 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: conf.py

# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf

# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: requirements.txt
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
111 changes: 111 additions & 0 deletions _static/adspect.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/bot-rule.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/credentials1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/credentials2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/binom/installation.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/chaining-ru.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _static/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 42 additions & 0 deletions _static/overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
*, h1, h2, h3, h4, h5 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}
a {
color: #295ada;
}
a:hover {
color: #214cbc;
}
.wy-menu-vertical a:hover {
background-color: #dfebff !important;
}
.wy-nav-side {
background: linear-gradient(#181818, #1f1f1f) !important;
}
.wy-nav-top {
background: #181818 !important;
}
.wy-nav-top a {
font-family: "Space Mono", sans-serif !important;
}
.wy-side-nav-search {
background: transparent !important;
}
.wy-menu.wy-menu-vertical > .caption {
display: none !important;
}
.wy-breadcrumbs-aside {
display: none !important;
}
.wy-side-nav-search input[type=text] {
border-radius: 3px !important;
}
code, code *, pre, pre * {
font-family: "Space Mono", monospace !important;
}
.rst-content tt.literal, .rst-content tt.literal, .rst-content code.literal {
color: #58b !important;
}
.ethical-rtd {
display: none !important;
}

0 comments on commit b127fa0

Please sign in to comment.