├── .gitignore ├── README.md ├── docs-md ├── docs ├── Dockerfile ├── doks │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .markdownlint-cli2.jsonc │ ├── .stylelintignore │ ├── .stylelintrc.json │ ├── LICENSE │ ├── archetypes │ │ ├── blog.md │ │ ├── default.md │ │ ├── docs.md │ │ └── docs │ │ │ ├── _index.md │ │ │ └── lorem │ │ │ ├── _index.md │ │ │ └── ipsum │ │ │ └── index.md │ ├── assets │ │ ├── fonts │ │ │ └── .gitkeep │ │ ├── images │ │ │ ├── default-image.png │ │ │ ├── stepping-frontpage.svg │ │ │ ├── test_how_it_works_c.png │ │ │ └── test_how_it_works_g.png │ │ ├── js │ │ │ ├── alert-init.js │ │ │ ├── alert.js │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── clipboard.js │ │ │ ├── darkmode-init.js │ │ │ ├── darkmode.js │ │ │ ├── highlight.js │ │ │ ├── index.js │ │ │ ├── instant.page.js │ │ │ ├── katex.js │ │ │ ├── lazysizes.js │ │ │ ├── mermaid.js │ │ │ ├── scroll-lock.js │ │ │ ├── to-top.js │ │ │ └── vendor │ │ │ │ └── .gitkeep │ │ └── scss │ │ │ ├── app.scss │ │ │ ├── common │ │ │ ├── _dark.scss │ │ │ ├── _fonts.scss │ │ │ ├── _global.scss │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ ├── _alerts.scss │ │ │ ├── _buttons.scss │ │ │ ├── _code.scss │ │ │ ├── _comments.scss │ │ │ ├── _details.scss │ │ │ ├── _forms.scss │ │ │ ├── _images.scss │ │ │ ├── _mermaid.scss │ │ │ ├── _search.scss │ │ │ ├── _syntax.scss │ │ │ └── _tables.scss │ │ │ ├── layouts │ │ │ ├── _footer.scss │ │ │ ├── _header.scss │ │ │ ├── _pages.scss │ │ │ ├── _posts.scss │ │ │ └── _sidebar.scss │ │ │ └── vendor │ │ │ └── .gitkeep │ ├── babel.config.js │ ├── config │ │ ├── _default │ │ │ ├── config.toml │ │ │ ├── languages.toml │ │ │ ├── markup.toml │ │ │ ├── menus │ │ │ │ └── menus.en.toml │ │ │ └── params.toml │ │ ├── next │ │ │ └── config.toml │ │ ├── postcss.config.js │ │ └── production │ │ │ └── config.toml │ ├── content │ │ └── en │ │ │ ├── _index.md │ │ │ ├── blog │ │ │ ├── _index.md │ │ │ └── say-hello-to-doks │ │ │ │ └── index.md │ │ │ ├── contact │ │ │ └── index.md │ │ │ ├── contributors │ │ │ └── _index.md │ │ │ ├── docs │ │ │ ├── _index.md │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ ├── comments.md │ │ │ │ ├── dashboard.md │ │ │ │ ├── meter-reads.md │ │ │ │ └── type-checker.md │ │ │ ├── getting-started │ │ │ │ ├── _index.md │ │ │ │ ├── installation.md │ │ │ │ ├── introduction.md │ │ │ │ ├── storing-state.md │ │ │ │ ├── testing.md │ │ │ │ └── writing-queries.md │ │ │ ├── in-production │ │ │ │ ├── _index.md │ │ │ │ ├── caveats.md │ │ │ │ ├── performance.md │ │ │ │ └── stepping-manager.md │ │ │ └── internals │ │ │ │ ├── _index.md │ │ │ │ ├── api.md │ │ │ │ ├── how-it-works.md │ │ │ │ ├── motivation.md │ │ │ │ └── steppingpack.md │ │ │ ├── privacy-policy │ │ │ └── index.md │ │ │ └── versions.md │ ├── data │ │ └── docs-versions.yml │ ├── functions │ │ └── hi-from-lambda.js │ ├── i18n │ │ ├── de.yaml │ │ ├── en.yaml │ │ └── nl.yaml │ ├── images │ │ ├── doks.png │ │ ├── screenshot.png │ │ └── tn.png │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── _markup │ │ │ │ └── render-heading.html │ │ │ ├── baseof.html │ │ │ ├── index.js │ │ │ ├── index.json │ │ │ ├── list.html │ │ │ ├── section.sitemap.xml │ │ │ ├── single.html │ │ │ ├── terms.html │ │ │ └── versions.html │ │ ├── blog │ │ │ └── single.html │ │ ├── docs │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── index.headers │ │ ├── index.html │ │ ├── index.redirects │ │ ├── partials │ │ │ ├── content │ │ │ │ ├── card-image.html │ │ │ │ ├── figure.html │ │ │ │ └── image.html │ │ │ ├── footer │ │ │ │ ├── footer.html │ │ │ │ └── script-footer.html │ │ │ ├── head │ │ │ │ ├── custom-head.html │ │ │ │ ├── favicons.html │ │ │ │ ├── head.html │ │ │ │ ├── opengraph.html │ │ │ │ ├── resource-hints.html │ │ │ │ ├── script-header.html │ │ │ │ ├── seo.html │ │ │ │ ├── structured-data.html │ │ │ │ ├── stylesheet.html │ │ │ │ └── twitter_cards.html │ │ │ ├── header │ │ │ │ ├── alert.html │ │ │ │ └── header.html │ │ │ ├── main │ │ │ │ ├── blog-meta.html │ │ │ │ ├── breadcrumb.html │ │ │ │ ├── date.html │ │ │ │ ├── docs-navigation.html │ │ │ │ ├── edit-page.html │ │ │ │ └── last-modified.html │ │ │ └── sidebar │ │ │ │ ├── auto-collapsible-menu.html │ │ │ │ ├── auto-default-menu.html │ │ │ │ ├── docs-menu.html │ │ │ │ ├── docs-toc.html │ │ │ │ ├── manual-collapsible-menu.html │ │ │ │ └── manual-default-menu.html │ │ ├── robots.txt │ │ ├── rss.xml │ │ ├── shortcodes │ │ │ ├── alert.html │ │ │ ├── details.html │ │ │ ├── email.html │ │ │ ├── mermaid.html │ │ │ └── video.html │ │ └── sitemap.xml │ ├── netlify.toml │ ├── package-lock.json │ ├── package.json │ ├── static │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── css │ │ │ └── vendor │ │ │ │ └── .gitkeep │ │ ├── doks.png │ │ ├── doks.svg │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── fonts │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ │ └── vendor │ │ │ │ ├── .gitkeep │ │ │ │ └── jost │ │ │ │ ├── jost-v4-latin-500.woff │ │ │ │ ├── jost-v4-latin-500.woff2 │ │ │ │ ├── jost-v4-latin-500italic.woff │ │ │ │ ├── jost-v4-latin-500italic.woff2 │ │ │ │ ├── jost-v4-latin-700.woff │ │ │ │ ├── jost-v4-latin-700.woff2 │ │ │ │ ├── jost-v4-latin-700italic.woff │ │ │ │ ├── jost-v4-latin-700italic.woff2 │ │ │ │ ├── jost-v4-latin-italic.woff │ │ │ │ ├── jost-v4-latin-italic.woff2 │ │ │ │ ├── jost-v4-latin-regular.woff │ │ │ │ └── jost-v4-latin-regular.woff2 │ │ ├── images │ │ │ └── vendor │ │ │ │ └── .gitkeep │ │ ├── js │ │ │ └── vendor │ │ │ │ └── .gitkeep │ │ ├── logo-doks.png │ │ ├── logo-doks.svg │ │ ├── site.webmanifest │ │ └── videos │ │ │ ├── flower.mp4 │ │ │ └── flower.webm │ └── theme.toml ├── fly.toml └── snippets │ ├── conftest.py │ ├── requirements.txt │ ├── test_how_it_works.py │ ├── test_meter_reads.py │ ├── test_setup.py │ ├── test_storing_state.py │ ├── test_typechecker.py │ └── test_writing_queries.py ├── graphs ├── test_crazy_group_transform.png ├── test_filter.png ├── test_first_n.png ├── test_first_n_2.png ├── test_group_by.png ├── test_group_by_2.png ├── test_group_by_zset_2.png ├── test_group_reduce_flatten.png ├── test_integrate_2.png ├── test_join.png ├── test_nested_group.png ├── test_outer_join.png ├── test_profile_1.png ├── test_recurse.png ├── test_sum.png ├── test_transform_grouped_reduce.png └── test_typechecker.png ├── licence.txt ├── mypy.ini ├── pyproject.toml ├── requirements-dev.txt ├── scripts ├── md ├── md.py ├── md_api.py └── type_gen.py ├── src └── stepping │ ├── __init__.py │ ├── datatypes │ ├── _btree.py │ ├── default_dict.py │ └── sorted_set.py │ ├── graph.py │ ├── operators │ ├── builder │ │ ├── __init__.py │ │ ├── ast.py │ │ ├── common.py │ │ ├── compile.py │ │ └── traverse.py │ ├── group.py │ ├── lifted.py │ ├── linear.py │ └── transform.py │ ├── profile.py │ ├── py.typed │ ├── run.py │ ├── steppingpack.py │ ├── store.py │ ├── types.py │ └── zset │ ├── functions.py │ ├── python.py │ └── sql │ ├── generic.py │ ├── postgres.py │ └── sqlite.py └── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── run ├── test_basic.py ├── test_further.py ├── test_profile.py └── test_recursive.py ├── test_builder.py ├── test_datatypes.py ├── test_postgres.py ├── test_sqlite.py ├── test_steppingpack.py ├── test_transform.py ├── test_types.py └── test_zset.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/README.md -------------------------------------------------------------------------------- /docs-md: -------------------------------------------------------------------------------- 1 | docs/doks/content/en/docs -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM pierrezemb/gostatic 2 | COPY ./doks/public/ /srv/http/ 3 | -------------------------------------------------------------------------------- /docs/doks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/.editorconfig -------------------------------------------------------------------------------- /docs/doks/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/.eslintignore -------------------------------------------------------------------------------- /docs/doks/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/.eslintrc.json -------------------------------------------------------------------------------- /docs/doks/.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /docs/doks/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/.stylelintignore -------------------------------------------------------------------------------- /docs/doks/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/.stylelintrc.json -------------------------------------------------------------------------------- /docs/doks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/LICENSE -------------------------------------------------------------------------------- /docs/doks/archetypes/blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/archetypes/blog.md -------------------------------------------------------------------------------- /docs/doks/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/archetypes/default.md -------------------------------------------------------------------------------- /docs/doks/archetypes/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/archetypes/docs.md -------------------------------------------------------------------------------- /docs/doks/archetypes/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/archetypes/docs/_index.md -------------------------------------------------------------------------------- /docs/doks/archetypes/docs/lorem/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/archetypes/docs/lorem/_index.md -------------------------------------------------------------------------------- /docs/doks/archetypes/docs/lorem/ipsum/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/archetypes/docs/lorem/ipsum/index.md -------------------------------------------------------------------------------- /docs/doks/assets/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/assets/images/default-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/images/default-image.png -------------------------------------------------------------------------------- /docs/doks/assets/images/stepping-frontpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/images/stepping-frontpage.svg -------------------------------------------------------------------------------- /docs/doks/assets/images/test_how_it_works_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/images/test_how_it_works_c.png -------------------------------------------------------------------------------- /docs/doks/assets/images/test_how_it_works_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/images/test_how_it_works_g.png -------------------------------------------------------------------------------- /docs/doks/assets/js/alert-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/alert-init.js -------------------------------------------------------------------------------- /docs/doks/assets/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/alert.js -------------------------------------------------------------------------------- /docs/doks/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/bootstrap.js -------------------------------------------------------------------------------- /docs/doks/assets/js/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/clipboard.js -------------------------------------------------------------------------------- /docs/doks/assets/js/darkmode-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/darkmode-init.js -------------------------------------------------------------------------------- /docs/doks/assets/js/darkmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/darkmode.js -------------------------------------------------------------------------------- /docs/doks/assets/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/highlight.js -------------------------------------------------------------------------------- /docs/doks/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/index.js -------------------------------------------------------------------------------- /docs/doks/assets/js/instant.page.js: -------------------------------------------------------------------------------- 1 | import 'instant.page'; 2 | -------------------------------------------------------------------------------- /docs/doks/assets/js/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/katex.js -------------------------------------------------------------------------------- /docs/doks/assets/js/lazysizes.js: -------------------------------------------------------------------------------- 1 | import 'lazysizes'; 2 | -------------------------------------------------------------------------------- /docs/doks/assets/js/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/mermaid.js -------------------------------------------------------------------------------- /docs/doks/assets/js/scroll-lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/scroll-lock.js -------------------------------------------------------------------------------- /docs/doks/assets/js/to-top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/js/to-top.js -------------------------------------------------------------------------------- /docs/doks/assets/js/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/app.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/common/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/common/_dark.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/common/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/common/_fonts.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/common/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/common/_global.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/common/_variables.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_alerts.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_buttons.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_code.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_comments.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_details.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_details.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_forms.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_images.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_mermaid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_mermaid.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_search.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_syntax.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/components/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/components/_tables.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/layouts/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/layouts/_footer.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/layouts/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/layouts/_header.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/layouts/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/layouts/_pages.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/layouts/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/layouts/_posts.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/layouts/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/assets/scss/layouts/_sidebar.scss -------------------------------------------------------------------------------- /docs/doks/assets/scss/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/babel.config.js -------------------------------------------------------------------------------- /docs/doks/config/_default/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/config/_default/config.toml -------------------------------------------------------------------------------- /docs/doks/config/_default/languages.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/config/_default/languages.toml -------------------------------------------------------------------------------- /docs/doks/config/_default/markup.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/config/_default/markup.toml -------------------------------------------------------------------------------- /docs/doks/config/_default/menus/menus.en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/config/_default/menus/menus.en.toml -------------------------------------------------------------------------------- /docs/doks/config/_default/params.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/config/_default/params.toml -------------------------------------------------------------------------------- /docs/doks/config/next/config.toml: -------------------------------------------------------------------------------- 1 | canonifyURLs = false 2 | -------------------------------------------------------------------------------- /docs/doks/config/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/config/postcss.config.js -------------------------------------------------------------------------------- /docs/doks/config/production/config.toml: -------------------------------------------------------------------------------- 1 | canonifyURLs = false 2 | -------------------------------------------------------------------------------- /docs/doks/content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/blog/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/blog/say-hello-to-doks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/blog/say-hello-to-doks/index.md -------------------------------------------------------------------------------- /docs/doks/content/en/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/contact/index.md -------------------------------------------------------------------------------- /docs/doks/content/en/contributors/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/contributors/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/examples/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/examples/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/examples/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/examples/comments.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/examples/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/examples/dashboard.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/examples/meter-reads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/examples/meter-reads.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/examples/type-checker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/examples/type-checker.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/getting-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/getting-started/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/getting-started/storing-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/getting-started/storing-state.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/getting-started/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/getting-started/testing.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/getting-started/writing-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/getting-started/writing-queries.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/in-production/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/in-production/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/in-production/caveats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/in-production/caveats.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/in-production/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/in-production/performance.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/in-production/stepping-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/in-production/stepping-manager.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/internals/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/internals/_index.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/internals/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/internals/api.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/internals/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/internals/how-it-works.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/internals/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/internals/motivation.md -------------------------------------------------------------------------------- /docs/doks/content/en/docs/internals/steppingpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/docs/internals/steppingpack.md -------------------------------------------------------------------------------- /docs/doks/content/en/privacy-policy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/privacy-policy/index.md -------------------------------------------------------------------------------- /docs/doks/content/en/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/content/en/versions.md -------------------------------------------------------------------------------- /docs/doks/data/docs-versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/data/docs-versions.yml -------------------------------------------------------------------------------- /docs/doks/functions/hi-from-lambda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/functions/hi-from-lambda.js -------------------------------------------------------------------------------- /docs/doks/i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/i18n/de.yaml -------------------------------------------------------------------------------- /docs/doks/i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/i18n/en.yaml -------------------------------------------------------------------------------- /docs/doks/i18n/nl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/i18n/nl.yaml -------------------------------------------------------------------------------- /docs/doks/images/doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/images/doks.png -------------------------------------------------------------------------------- /docs/doks/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/images/screenshot.png -------------------------------------------------------------------------------- /docs/doks/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/images/tn.png -------------------------------------------------------------------------------- /docs/doks/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/404.html -------------------------------------------------------------------------------- /docs/doks/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /docs/doks/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/doks/layouts/_default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/index.js -------------------------------------------------------------------------------- /docs/doks/layouts/_default/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/index.json -------------------------------------------------------------------------------- /docs/doks/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/doks/layouts/_default/section.sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/section.sitemap.xml -------------------------------------------------------------------------------- /docs/doks/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/doks/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/terms.html -------------------------------------------------------------------------------- /docs/doks/layouts/_default/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/_default/versions.html -------------------------------------------------------------------------------- /docs/doks/layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/blog/single.html -------------------------------------------------------------------------------- /docs/doks/layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/docs/list.html -------------------------------------------------------------------------------- /docs/doks/layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/docs/single.html -------------------------------------------------------------------------------- /docs/doks/layouts/index.headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/index.headers -------------------------------------------------------------------------------- /docs/doks/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/index.html -------------------------------------------------------------------------------- /docs/doks/layouts/index.redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/index.redirects -------------------------------------------------------------------------------- /docs/doks/layouts/partials/content/card-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/content/card-image.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/content/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/content/figure.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/content/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/content/image.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/footer/footer.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/footer/script-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/footer/script-footer.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/custom-head.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/favicons.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/head.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/opengraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/opengraph.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/resource-hints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/resource-hints.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/script-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/script-header.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/seo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/seo.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/structured-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/structured-data.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/stylesheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/stylesheet.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/head/twitter_cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/head/twitter_cards.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/header/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/header/alert.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/header/header.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/main/blog-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/main/blog-meta.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/main/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/main/breadcrumb.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/main/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/main/date.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/main/docs-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/main/docs-navigation.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/main/edit-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/main/edit-page.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/main/last-modified.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/main/last-modified.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/sidebar/auto-collapsible-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/sidebar/auto-collapsible-menu.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/sidebar/auto-default-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/sidebar/auto-default-menu.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/sidebar/docs-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/sidebar/docs-menu.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/sidebar/docs-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/sidebar/docs-toc.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/sidebar/manual-collapsible-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/sidebar/manual-collapsible-menu.html -------------------------------------------------------------------------------- /docs/doks/layouts/partials/sidebar/manual-default-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/partials/sidebar/manual-default-menu.html -------------------------------------------------------------------------------- /docs/doks/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/robots.txt -------------------------------------------------------------------------------- /docs/doks/layouts/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/rss.xml -------------------------------------------------------------------------------- /docs/doks/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /docs/doks/layouts/shortcodes/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/shortcodes/details.html -------------------------------------------------------------------------------- /docs/doks/layouts/shortcodes/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/shortcodes/email.html -------------------------------------------------------------------------------- /docs/doks/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /docs/doks/layouts/shortcodes/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/shortcodes/video.html -------------------------------------------------------------------------------- /docs/doks/layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/layouts/sitemap.xml -------------------------------------------------------------------------------- /docs/doks/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/netlify.toml -------------------------------------------------------------------------------- /docs/doks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/package-lock.json -------------------------------------------------------------------------------- /docs/doks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/package.json -------------------------------------------------------------------------------- /docs/doks/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/doks/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/doks/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/doks/static/css/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/static/doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/doks.png -------------------------------------------------------------------------------- /docs/doks/static/doks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/doks.svg -------------------------------------------------------------------------------- /docs/doks/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/favicon-16x16.png -------------------------------------------------------------------------------- /docs/doks/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/favicon-32x32.png -------------------------------------------------------------------------------- /docs/doks/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/favicon.ico -------------------------------------------------------------------------------- /docs/doks/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/favicon.svg -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-500.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-500.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-500italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-500italic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-500italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-500italic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-700.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-700.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-700italic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-700italic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-italic.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-italic.woff2 -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-regular.woff -------------------------------------------------------------------------------- /docs/doks/static/fonts/vendor/jost/jost-v4-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/fonts/vendor/jost/jost-v4-latin-regular.woff2 -------------------------------------------------------------------------------- /docs/doks/static/images/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/static/js/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/doks/static/logo-doks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/logo-doks.png -------------------------------------------------------------------------------- /docs/doks/static/logo-doks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/logo-doks.svg -------------------------------------------------------------------------------- /docs/doks/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/site.webmanifest -------------------------------------------------------------------------------- /docs/doks/static/videos/flower.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/videos/flower.mp4 -------------------------------------------------------------------------------- /docs/doks/static/videos/flower.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/static/videos/flower.webm -------------------------------------------------------------------------------- /docs/doks/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/doks/theme.toml -------------------------------------------------------------------------------- /docs/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/fly.toml -------------------------------------------------------------------------------- /docs/snippets/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/conftest.py -------------------------------------------------------------------------------- /docs/snippets/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/snippets/test_how_it_works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/test_how_it_works.py -------------------------------------------------------------------------------- /docs/snippets/test_meter_reads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/test_meter_reads.py -------------------------------------------------------------------------------- /docs/snippets/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/test_setup.py -------------------------------------------------------------------------------- /docs/snippets/test_storing_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/test_storing_state.py -------------------------------------------------------------------------------- /docs/snippets/test_typechecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/test_typechecker.py -------------------------------------------------------------------------------- /docs/snippets/test_writing_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/docs/snippets/test_writing_queries.py -------------------------------------------------------------------------------- /graphs/test_crazy_group_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_crazy_group_transform.png -------------------------------------------------------------------------------- /graphs/test_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_filter.png -------------------------------------------------------------------------------- /graphs/test_first_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_first_n.png -------------------------------------------------------------------------------- /graphs/test_first_n_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_first_n_2.png -------------------------------------------------------------------------------- /graphs/test_group_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_group_by.png -------------------------------------------------------------------------------- /graphs/test_group_by_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_group_by_2.png -------------------------------------------------------------------------------- /graphs/test_group_by_zset_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_group_by_zset_2.png -------------------------------------------------------------------------------- /graphs/test_group_reduce_flatten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_group_reduce_flatten.png -------------------------------------------------------------------------------- /graphs/test_integrate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_integrate_2.png -------------------------------------------------------------------------------- /graphs/test_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_join.png -------------------------------------------------------------------------------- /graphs/test_nested_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_nested_group.png -------------------------------------------------------------------------------- /graphs/test_outer_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_outer_join.png -------------------------------------------------------------------------------- /graphs/test_profile_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_profile_1.png -------------------------------------------------------------------------------- /graphs/test_recurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_recurse.png -------------------------------------------------------------------------------- /graphs/test_sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_sum.png -------------------------------------------------------------------------------- /graphs/test_transform_grouped_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_transform_grouped_reduce.png -------------------------------------------------------------------------------- /graphs/test_typechecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/graphs/test_typechecker.png -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/licence.txt -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /scripts/md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/scripts/md -------------------------------------------------------------------------------- /scripts/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/scripts/md.py -------------------------------------------------------------------------------- /scripts/md_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/scripts/md_api.py -------------------------------------------------------------------------------- /scripts/type_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/scripts/type_gen.py -------------------------------------------------------------------------------- /src/stepping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/__init__.py -------------------------------------------------------------------------------- /src/stepping/datatypes/_btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/datatypes/_btree.py -------------------------------------------------------------------------------- /src/stepping/datatypes/default_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/datatypes/default_dict.py -------------------------------------------------------------------------------- /src/stepping/datatypes/sorted_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/datatypes/sorted_set.py -------------------------------------------------------------------------------- /src/stepping/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/graph.py -------------------------------------------------------------------------------- /src/stepping/operators/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/builder/__init__.py -------------------------------------------------------------------------------- /src/stepping/operators/builder/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/builder/ast.py -------------------------------------------------------------------------------- /src/stepping/operators/builder/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/builder/common.py -------------------------------------------------------------------------------- /src/stepping/operators/builder/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/builder/compile.py -------------------------------------------------------------------------------- /src/stepping/operators/builder/traverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/builder/traverse.py -------------------------------------------------------------------------------- /src/stepping/operators/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/group.py -------------------------------------------------------------------------------- /src/stepping/operators/lifted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/lifted.py -------------------------------------------------------------------------------- /src/stepping/operators/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/linear.py -------------------------------------------------------------------------------- /src/stepping/operators/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/operators/transform.py -------------------------------------------------------------------------------- /src/stepping/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/profile.py -------------------------------------------------------------------------------- /src/stepping/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stepping/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/run.py -------------------------------------------------------------------------------- /src/stepping/steppingpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/steppingpack.py -------------------------------------------------------------------------------- /src/stepping/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/store.py -------------------------------------------------------------------------------- /src/stepping/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/types.py -------------------------------------------------------------------------------- /src/stepping/zset/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/zset/functions.py -------------------------------------------------------------------------------- /src/stepping/zset/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/zset/python.py -------------------------------------------------------------------------------- /src/stepping/zset/sql/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/zset/sql/generic.py -------------------------------------------------------------------------------- /src/stepping/zset/sql/postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/zset/sql/postgres.py -------------------------------------------------------------------------------- /src/stepping/zset/sql/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/src/stepping/zset/sql/sqlite.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/run/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/run/test_basic.py -------------------------------------------------------------------------------- /tests/run/test_further.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/run/test_further.py -------------------------------------------------------------------------------- /tests/run/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/run/test_profile.py -------------------------------------------------------------------------------- /tests/run/test_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/run/test_recursive.py -------------------------------------------------------------------------------- /tests/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_builder.py -------------------------------------------------------------------------------- /tests/test_datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_datatypes.py -------------------------------------------------------------------------------- /tests/test_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_postgres.py -------------------------------------------------------------------------------- /tests/test_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_sqlite.py -------------------------------------------------------------------------------- /tests/test_steppingpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_steppingpack.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_types.py -------------------------------------------------------------------------------- /tests/test_zset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leontrolski/stepping/HEAD/tests/test_zset.py --------------------------------------------------------------------------------