├── .github └── workflows │ ├── README.md │ ├── trigger_installer_build.yml │ └── trigger_preview_installer_build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── docs ├── examples │ ├── advanced │ │ ├── installs │ │ │ └── docker-engine.md │ │ ├── ops │ │ │ ├── config.md │ │ │ └── mongodb.md │ │ └── runbooks │ │ │ ├── deploy-hosted-notebooks.md │ │ │ ├── install-letsencrypt-ssl.md │ │ │ └── ottomatica │ │ │ ├── ottomatica.services.md │ │ │ └── www.md │ ├── command.md │ ├── diff.md │ ├── failed_when.md │ ├── file.md │ ├── footnote.md │ ├── imgs │ │ ├── 136.jpg │ │ ├── docable-multi-target-curl.png │ │ └── download-key.png │ ├── info.md │ ├── multi-target.md │ ├── notebook-cells.md │ ├── playground.md │ ├── privileged.md │ ├── quiz.md │ ├── script.md │ ├── shell.md │ ├── slides.md │ ├── stream.md │ ├── svg.md │ ├── tar-challenge.md │ ├── terminal.md │ ├── tty.md │ ├── tutorials │ │ ├── docable-publish.md │ │ ├── figlet.md │ │ ├── node-child_process.md │ │ └── node-log.md │ ├── variables.md │ ├── win-env.md │ ├── workshops │ │ └── EngineeringBasics │ │ │ ├── .gitignore │ │ │ ├── Answers.md │ │ │ ├── Environments.md │ │ │ ├── Git.md │ │ │ ├── MarkdownEditors.md │ │ │ ├── OnlineTools.md │ │ │ ├── README.md │ │ │ ├── Setup.md │ │ │ ├── Shells.md │ │ │ ├── resources │ │ │ └── imgs │ │ │ │ ├── git-blob.png │ │ │ │ ├── git-branches.png │ │ │ │ ├── git-commit.png │ │ │ │ ├── git-merkle-tree.png │ │ │ │ ├── git-object-model.png │ │ │ │ ├── git-remote.png │ │ │ │ ├── git-staging.png │ │ │ │ ├── git-tree-folder.png │ │ │ │ ├── git-tree.png │ │ │ │ ├── linux-cpu-flags.png │ │ │ │ ├── mac-cpu-flags.png │ │ │ │ ├── profile.png │ │ │ │ ├── win-env.jpg │ │ │ │ └── win-taskmanager.jpg │ │ │ ├── setup │ │ │ ├── configure-shell.md │ │ │ ├── install-brew.md │ │ │ ├── install-choco.md │ │ │ └── package-managers.md │ │ │ └── test │ │ │ └── opunit.yml │ └── youtube.md ├── img │ ├── banner.png │ ├── docable-cli.png │ ├── docable-edit-script.gif │ ├── docable-edit.gif │ ├── docable-env.png │ ├── docable-figlet-md.png │ ├── docable-figlet.gif │ ├── docable-privileged.png │ ├── docable-tray │ │ ├── docable-tray-gui.png │ │ ├── docable-tray-linux-run.gif │ │ ├── docable-tray-macos-drag.gif │ │ ├── docable-tray-macos-open.png │ │ ├── docable-tray-macos-permission prompt.png │ │ ├── docable-tray-macos-prompt1.png │ │ ├── docable-tray-macos-prompt2.png │ │ ├── docable-tray-macos-run.gif │ │ ├── docable-tray-win-install1.png │ │ ├── docable-tray-win-install2.png │ │ ├── docable-tray-win-run.gif │ │ ├── docable-tray-win-smartscreen1.png │ │ └── docable-tray-win-smartscreen2.png │ ├── docable-tree.png │ ├── docable-variable.gif │ ├── docable-variables-secrets.png │ └── md_docable_github.png └── install.md ├── index.js ├── lib ├── env.js ├── notebook │ ├── manager.js │ ├── policy.js │ ├── render.js │ └── slug.js ├── providers │ ├── manager.js │ ├── pick.js │ └── refresh.js ├── routes │ ├── notebook.js │ └── workspace.js └── utils.js ├── package.json ├── public ├── css │ ├── github-markdown.css │ ├── notebook.css │ ├── sticky-footer-navbar.css │ └── switch.css ├── js │ ├── ansiparse.js │ ├── notebook-playgrounds.js │ ├── notebook.js │ ├── notebookApi.js │ ├── user.js │ ├── vendor │ │ ├── PATCH-jquery.fancytree.glyph.js │ │ └── font-awesome.min.js │ └── workspaceApi.js └── media │ └── favicon.png ├── vendor ├── bin │ └── send.exe └── src │ ├── protocol │ └── mac │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── README.md │ │ ├── docable.app │ │ └── Contents │ │ │ └── Info.plist │ │ ├── handler.h │ │ ├── handler.m │ │ └── main.go │ └── send.go └── views ├── 404.ejs ├── gh_import.ejs ├── home.ejs ├── notebook.ejs ├── targets.ejs ├── templates ├── docable_menu.ejs ├── environment.ejs ├── footer_analytics.ejs └── notebook_variables.ejs └── variables.ejs /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/trigger_installer_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/.github/workflows/trigger_installer_build.yml -------------------------------------------------------------------------------- /.github/workflows/trigger_preview_installer_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/.github/workflows/trigger_preview_installer_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /docs/examples/advanced/installs/docker-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/installs/docker-engine.md -------------------------------------------------------------------------------- /docs/examples/advanced/ops/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/ops/config.md -------------------------------------------------------------------------------- /docs/examples/advanced/ops/mongodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/ops/mongodb.md -------------------------------------------------------------------------------- /docs/examples/advanced/runbooks/deploy-hosted-notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/runbooks/deploy-hosted-notebooks.md -------------------------------------------------------------------------------- /docs/examples/advanced/runbooks/install-letsencrypt-ssl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/runbooks/install-letsencrypt-ssl.md -------------------------------------------------------------------------------- /docs/examples/advanced/runbooks/ottomatica/ottomatica.services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/runbooks/ottomatica/ottomatica.services.md -------------------------------------------------------------------------------- /docs/examples/advanced/runbooks/ottomatica/www.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/advanced/runbooks/ottomatica/www.md -------------------------------------------------------------------------------- /docs/examples/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/command.md -------------------------------------------------------------------------------- /docs/examples/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/diff.md -------------------------------------------------------------------------------- /docs/examples/failed_when.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/failed_when.md -------------------------------------------------------------------------------- /docs/examples/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/file.md -------------------------------------------------------------------------------- /docs/examples/footnote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/footnote.md -------------------------------------------------------------------------------- /docs/examples/imgs/136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/imgs/136.jpg -------------------------------------------------------------------------------- /docs/examples/imgs/docable-multi-target-curl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/imgs/docable-multi-target-curl.png -------------------------------------------------------------------------------- /docs/examples/imgs/download-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/imgs/download-key.png -------------------------------------------------------------------------------- /docs/examples/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/info.md -------------------------------------------------------------------------------- /docs/examples/multi-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/multi-target.md -------------------------------------------------------------------------------- /docs/examples/notebook-cells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/notebook-cells.md -------------------------------------------------------------------------------- /docs/examples/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/playground.md -------------------------------------------------------------------------------- /docs/examples/privileged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/privileged.md -------------------------------------------------------------------------------- /docs/examples/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/quiz.md -------------------------------------------------------------------------------- /docs/examples/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/script.md -------------------------------------------------------------------------------- /docs/examples/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/shell.md -------------------------------------------------------------------------------- /docs/examples/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/slides.md -------------------------------------------------------------------------------- /docs/examples/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/stream.md -------------------------------------------------------------------------------- /docs/examples/svg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/svg.md -------------------------------------------------------------------------------- /docs/examples/tar-challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/tar-challenge.md -------------------------------------------------------------------------------- /docs/examples/terminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/terminal.md -------------------------------------------------------------------------------- /docs/examples/tty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/tty.md -------------------------------------------------------------------------------- /docs/examples/tutorials/docable-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/tutorials/docable-publish.md -------------------------------------------------------------------------------- /docs/examples/tutorials/figlet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/tutorials/figlet.md -------------------------------------------------------------------------------- /docs/examples/tutorials/node-child_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/tutorials/node-child_process.md -------------------------------------------------------------------------------- /docs/examples/tutorials/node-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/tutorials/node-log.md -------------------------------------------------------------------------------- /docs/examples/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/variables.md -------------------------------------------------------------------------------- /docs/examples/win-env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/win-env.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/.gitignore: -------------------------------------------------------------------------------- 1 | docable_results/ -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/Answers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/Answers.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/Environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/Environments.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/Git.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/MarkdownEditors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/MarkdownEditors.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/OnlineTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/OnlineTools.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/README.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/Setup.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/Shells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/Shells.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-blob.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-branches.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-commit.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-merkle-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-merkle-tree.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-object-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-object-model.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-remote.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-staging.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-tree-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-tree-folder.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/git-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/git-tree.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/linux-cpu-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/linux-cpu-flags.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/mac-cpu-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/mac-cpu-flags.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/profile.png -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/win-env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/win-env.jpg -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/resources/imgs/win-taskmanager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/resources/imgs/win-taskmanager.jpg -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/setup/configure-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/setup/configure-shell.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/setup/install-brew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/setup/install-brew.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/setup/install-choco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/setup/install-choco.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/setup/package-managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/setup/package-managers.md -------------------------------------------------------------------------------- /docs/examples/workshops/EngineeringBasics/test/opunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/workshops/EngineeringBasics/test/opunit.yml -------------------------------------------------------------------------------- /docs/examples/youtube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/examples/youtube.md -------------------------------------------------------------------------------- /docs/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/banner.png -------------------------------------------------------------------------------- /docs/img/docable-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-cli.png -------------------------------------------------------------------------------- /docs/img/docable-edit-script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-edit-script.gif -------------------------------------------------------------------------------- /docs/img/docable-edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-edit.gif -------------------------------------------------------------------------------- /docs/img/docable-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-env.png -------------------------------------------------------------------------------- /docs/img/docable-figlet-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-figlet-md.png -------------------------------------------------------------------------------- /docs/img/docable-figlet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-figlet.gif -------------------------------------------------------------------------------- /docs/img/docable-privileged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-privileged.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-gui.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-linux-run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-linux-run.gif -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-macos-drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-macos-drag.gif -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-macos-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-macos-open.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-macos-permission prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-macos-permission prompt.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-macos-prompt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-macos-prompt1.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-macos-prompt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-macos-prompt2.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-macos-run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-macos-run.gif -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-win-install1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-win-install1.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-win-install2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-win-install2.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-win-run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-win-run.gif -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-win-smartscreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-win-smartscreen1.png -------------------------------------------------------------------------------- /docs/img/docable-tray/docable-tray-win-smartscreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tray/docable-tray-win-smartscreen2.png -------------------------------------------------------------------------------- /docs/img/docable-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-tree.png -------------------------------------------------------------------------------- /docs/img/docable-variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-variable.gif -------------------------------------------------------------------------------- /docs/img/docable-variables-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/docable-variables-secrets.png -------------------------------------------------------------------------------- /docs/img/md_docable_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/img/md_docable_github.png -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/docs/install.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/index.js -------------------------------------------------------------------------------- /lib/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/env.js -------------------------------------------------------------------------------- /lib/notebook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/notebook/manager.js -------------------------------------------------------------------------------- /lib/notebook/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/notebook/policy.js -------------------------------------------------------------------------------- /lib/notebook/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/notebook/render.js -------------------------------------------------------------------------------- /lib/notebook/slug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/notebook/slug.js -------------------------------------------------------------------------------- /lib/providers/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/providers/manager.js -------------------------------------------------------------------------------- /lib/providers/pick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/providers/pick.js -------------------------------------------------------------------------------- /lib/providers/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/providers/refresh.js -------------------------------------------------------------------------------- /lib/routes/notebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/routes/notebook.js -------------------------------------------------------------------------------- /lib/routes/workspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/routes/workspace.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/package.json -------------------------------------------------------------------------------- /public/css/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/css/github-markdown.css -------------------------------------------------------------------------------- /public/css/notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/css/notebook.css -------------------------------------------------------------------------------- /public/css/sticky-footer-navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/css/sticky-footer-navbar.css -------------------------------------------------------------------------------- /public/css/switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/css/switch.css -------------------------------------------------------------------------------- /public/js/ansiparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/ansiparse.js -------------------------------------------------------------------------------- /public/js/notebook-playgrounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/notebook-playgrounds.js -------------------------------------------------------------------------------- /public/js/notebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/notebook.js -------------------------------------------------------------------------------- /public/js/notebookApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/notebookApi.js -------------------------------------------------------------------------------- /public/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/user.js -------------------------------------------------------------------------------- /public/js/vendor/PATCH-jquery.fancytree.glyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/vendor/PATCH-jquery.fancytree.glyph.js -------------------------------------------------------------------------------- /public/js/vendor/font-awesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/vendor/font-awesome.min.js -------------------------------------------------------------------------------- /public/js/workspaceApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/js/workspaceApi.js -------------------------------------------------------------------------------- /public/media/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/public/media/favicon.png -------------------------------------------------------------------------------- /vendor/bin/send.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/bin/send.exe -------------------------------------------------------------------------------- /vendor/src/protocol/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/Info.plist -------------------------------------------------------------------------------- /vendor/src/protocol/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/Makefile -------------------------------------------------------------------------------- /vendor/src/protocol/mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/README.md -------------------------------------------------------------------------------- /vendor/src/protocol/mac/docable.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/docable.app/Contents/Info.plist -------------------------------------------------------------------------------- /vendor/src/protocol/mac/handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/handler.h -------------------------------------------------------------------------------- /vendor/src/protocol/mac/handler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/handler.m -------------------------------------------------------------------------------- /vendor/src/protocol/mac/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/protocol/mac/main.go -------------------------------------------------------------------------------- /vendor/src/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/vendor/src/send.go -------------------------------------------------------------------------------- /views/404.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/404.ejs -------------------------------------------------------------------------------- /views/gh_import.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/gh_import.ejs -------------------------------------------------------------------------------- /views/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/home.ejs -------------------------------------------------------------------------------- /views/notebook.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/notebook.ejs -------------------------------------------------------------------------------- /views/targets.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/targets.ejs -------------------------------------------------------------------------------- /views/templates/docable_menu.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/templates/docable_menu.ejs -------------------------------------------------------------------------------- /views/templates/environment.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/templates/environment.ejs -------------------------------------------------------------------------------- /views/templates/footer_analytics.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/templates/footer_analytics.ejs -------------------------------------------------------------------------------- /views/templates/notebook_variables.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/templates/notebook_variables.ejs -------------------------------------------------------------------------------- /views/variables.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ottomatica/docable-notebooks/HEAD/views/variables.ejs --------------------------------------------------------------------------------