├── .nvmrc
├── .husky
└── pre-commit
├── .dockerignore
├── vite-env.d.ts
├── .env.example
├── src
├── components
│ ├── TableOfContent
│ │ └── constants.ts
│ ├── Label.astro
│ ├── table
│ │ ├── Table.astro
│ │ └── TableRow.astro
│ ├── Version.astro
│ ├── cards
│ │ ├── TitleCard.astro
│ │ ├── Card.astro
│ │ ├── ImageCard.astro
│ │ └── CardGrid.astro
│ ├── ContentPanel.astro
│ ├── Sidebar.astro
│ ├── Keyboard.astro
│ ├── MarkdownContent.astro
│ ├── TableOfContents.astro
│ ├── Head.astro
│ ├── EditLink.astro
│ ├── ThemeProvider.astro
│ ├── Hero.astro
│ ├── PageSidebar.astro
│ ├── Aside.astro
│ ├── TwoColumnContent.astro
│ ├── ZoomInfo.astro
│ ├── PageTitle.astro
│ ├── Footer.astro
│ ├── ExploreMore.astro
│ ├── Header.astro
│ ├── Pagination.astro
│ ├── PostHog.astro
│ ├── TableOfContentsList.astro
│ ├── MobileMenuToggle.astro
│ ├── PageFrame.astro
│ ├── menu
│ │ └── SideNavLinks.tsx
│ └── ThemeSelect.astro
├── fonts
│ ├── Inter-Medium.ttf
│ ├── Inter-Regular.ttf
│ ├── Inter-SemiBold.ttf
│ ├── BerkeleyMono-Regular.otf
│ └── font-face.css
├── env.d.ts
├── assets
│ ├── index
│ │ ├── images
│ │ │ ├── vim.png
│ │ │ ├── clion.png
│ │ │ ├── goLand.png
│ │ │ ├── rider.png
│ │ │ ├── intelliJ.png
│ │ │ ├── pycharm.png
│ │ │ ├── rubyMine.png
│ │ │ ├── webstorm.png
│ │ │ ├── architecture-diagram-dark.png
│ │ │ └── architecture-diagram-light.png
│ │ └── icons
│ │ │ ├── terminal.svg
│ │ │ ├── BareMetal.svg
│ │ │ ├── GitHub.svg
│ │ │ ├── Bitbucket.svg
│ │ │ └── GitLab.svg
│ ├── tools
│ │ └── vsext
│ │ │ ├── ssh-key.png
│ │ │ ├── allow-signin.png
│ │ │ ├── choose-open.png
│ │ │ ├── grant-access.png
│ │ │ ├── ssh-config-2.png
│ │ │ ├── ssh-config.png
│ │ │ ├── url-redirect.png
│ │ │ ├── video-poster.png
│ │ │ ├── browser-prompt.png
│ │ │ ├── editor-prompt.png
│ │ │ ├── dashboard-signin.png
│ │ │ ├── daytona-dashboard.png
│ │ │ ├── daytona-vscode-1.png
│ │ │ ├── daytona-vscode-2.png
│ │ │ ├── daytona-vscode-3.png
│ │ │ ├── sync-code-daytona.png
│ │ │ ├── allow-daytona-vscode.png
│ │ │ ├── code-external-website.png
│ │ │ ├── environment-variables.png
│ │ │ ├── remote-ssh-extension.png
│ │ │ └── daytona-dashboard-settings.png
│ ├── sidebar
│ │ ├── rectangle.svg
│ │ ├── credit-card.svg
│ │ ├── link.svg
│ │ ├── jetbrains.svg
│ │ ├── folder.svg
│ │ ├── layout.svg
│ │ ├── agent-toolbox.svg
│ │ ├── bookmark.svg
│ │ ├── package.svg
│ │ ├── building.svg
│ │ ├── union.svg
│ │ ├── pulse.svg
│ │ ├── table.svg
│ │ ├── vscode-alt.svg
│ │ ├── log.svg
│ │ ├── container-registries.svg
│ │ ├── copy.svg
│ │ ├── prebuilds.svg
│ │ ├── api-key.svg
│ │ ├── samples.svg
│ │ ├── server.svg
│ │ ├── tag.svg
│ │ ├── install.svg
│ │ ├── warning.svg
│ │ ├── delete-alt.svg
│ │ ├── circle-error.svg
│ │ ├── tools.svg
│ │ ├── user.svg
│ │ ├── home.svg
│ │ ├── shield.svg
│ │ ├── terminal.svg
│ │ ├── switch.svg
│ │ ├── document.svg
│ │ ├── layers.svg
│ │ ├── flag.svg
│ │ ├── globe.svg
│ │ ├── git-branch.svg
│ │ ├── git-commit.svg
│ │ ├── computer.svg
│ │ ├── users.svg
│ │ ├── docker.svg
│ │ ├── architecture.svg
│ │ ├── clipboard-list.svg
│ │ └── cluster.svg
│ └── icons
│ │ ├── text-arrow.svg
│ │ ├── documentation-icon.svg
│ │ ├── copy.svg
│ │ ├── facts.svg
│ │ ├── search.svg
│ │ ├── bookmark.svg
│ │ ├── edit.svg
│ │ ├── default-mood.svg
│ │ ├── arrow-left.svg
│ │ ├── arrow-right.svg
│ │ ├── closeX.svg
│ │ ├── warning.svg
│ │ ├── menu.svg
│ │ ├── circle-error.svg
│ │ ├── logo-icon.svg
│ │ ├── dark-moon.svg
│ │ ├── circle-information.svg
│ │ └── light-sun.svg
├── styles
│ ├── _variables.scss
│ ├── components
│ │ ├── page-frame.scss
│ │ ├── docs-footer.scss
│ │ ├── cards.scss
│ │ └── search.scss
│ ├── style.scss
│ ├── mixins.scss
│ ├── init.scss
│ └── _color.scss
└── content
│ ├── docs
│ ├── python-sdk
│ │ ├── common
│ │ │ └── errors.mdx
│ │ ├── sync
│ │ │ ├── object-storage.mdx
│ │ │ └── volume.mdx
│ │ ├── async
│ │ │ ├── async-object-storage.mdx
│ │ │ └── async-volume.mdx
│ │ └── index.mdx
│ ├── 404.md
│ ├── regions.mdx
│ ├── typescript-sdk
│ │ ├── execute-response.mdx
│ │ ├── errors.mdx
│ │ ├── index.mdx
│ │ ├── object-storage.mdx
│ │ └── volume.mdx
│ ├── billing.mdx
│ ├── linked-accounts.mdx
│ ├── api-keys.mdx
│ ├── web-terminal.mdx
│ ├── preview-and-authentication.mdx
│ ├── limits.mdx
│ ├── organizations.mdx
│ ├── language-server-protocol.mdx
│ └── configuration.mdx
│ └── legacy-docs
│ ├── installation
│ └── method
│ │ ├── script-unix.mdx
│ │ ├── homebrew.mdx
│ │ ├── nix.mdx
│ │ ├── script-powershell.mdx
│ │ ├── uninstall.mdx
│ │ └── uninstall-windows.mdx
│ ├── about
│ └── what-is-daytona.mdx
│ ├── configuration
│ └── api-keys.mdx
│ ├── sdk
│ ├── sandbox-management.mdx
│ └── language-server-protocol.mdx
│ └── misc
│ └── troubleshooting.mdx
├── public
├── daytona.png
└── favicon.ico
├── vite.config.js
├── SECURITY.md
├── server
├── util
│ └── environment.mjs
└── index.mjs
├── tailwind.config.js
├── .devcontainer
├── welcome-message.txt
└── devcontainer.json
├── .prettierrc
├── tsconfig.json
├── Dockerfile
├── .gitignore
├── .markdownlint-cli2.jsonc
├── package.json
├── astro.config.mjs
└── tools
└── update-sdk-reference.js
/.nvmrc:
--------------------------------------------------------------------------------
1 | v20.10.0
2 |
--------------------------------------------------------------------------------
/.husky/pre-commit:
--------------------------------------------------------------------------------
1 | yarn lint-staged
2 |
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | Dockerfile
--------------------------------------------------------------------------------
/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///