Codebase

Navigate the Codebase using the tree view. Use the filters to highlight where various files are grouped to aid understanding.

Getting Started Commands

Project Structure

Below is a short description of the key directories of the project to aid you when understanding where key files are located.

.devcontainer/ - Contains development container related configurations for Visual Studio Code.
.vscode/ - Holds settings and extensions specific to Visual Studio Code for the project.
assets/ - Directory for storing static files such as images, stylesheets, and scripts.
assets/images/ - Subdirectory for storing project images.
cmd/ - Contains command-line interface tools and scripts.
cmd/daytona/ - Subdirectory for Daytona-specific command-line tools.
cmd/daytona/config/ - Subdirectory for configuration files for Daytona command-line tools.
hack/ - Directory for Go development, including build scripts and dependencies.
hack/builder_image/ - Subdirectory for building Docker images for Go development.
hack/docker/ - Subdirectory for Docker-related configurations and scripts.
hack/project_image/ - Subdirectory for building the project Docker image.
internal/ - Private package directory for the project's internal modules.
internal/apikeys/ - Subdirectory for managing API keys.
internal/cmd/ - Subdirectory for command-line tools.
internal/cmd/tailscale/ - Subdirectory for Tailscale command-line tools.
internal/constants/ - Subdirectory for project constants.
internal/jetbrains/ - Subdirectory for JetBrains IDE integrations.
internal/testing/ - Subdirectory for testing-related modules.
internal/testing/agent/ - Subdirectory for testing agents.
internal/testing/docker/ - Subdirectory for Docker-related testing configurations.
internal/testing/git/ - Subdirectory for Git-related testing configurations.
internal/testing/logger/ - Subdirectory for logging configurations for tests.
internal/testing/provider/ - Subdirectory for testing providers.
internal/testing/server/ - Subdirectory for testing server configurations.
internal/util/ - Subdirectory for utility modules.
internal/util/apiclient/ - Subdirectory for API client utilities.
pkg/ - Go packages directory.
pkg/agent/ - Subdirectory for the project's agent package.
pkg/agent/config/ - Subdirectory for configuration files for the agent package.
pkg/agent/ssh/ - Subdirectory for SSH-related configurations and utilities.
pkg/agent/tailscale/ - Subdirectory for Tailscale-related configurations and utilities.
pkg/api/ - Subdirectory for API-related packages.
pkg/api/controllers/ - Subdirectory for API controller handlers.
pkg/api/middlewares/ - Subdirectory for API middlewares.
pkg/apiclient/ - Subdirectory for API client package.
pkg/apiclient/.openapi-generator/ - Subdirectory for OpenAPI generator configurations.
pkg/apiclient/api/ - Subdirectory for API client API.
pkg/apikey/ - Subdirectory for API key management.
pkg/build/ - Subdirectory for build-related packages and scripts.
pkg/build/containerregistry/ - Subdirectory for container registry configurations.
pkg/build/detect/ - Subdirectory for detecting the build environment.
pkg/build/devcontainer/ - Subdirectory for Devcontainer-related build configurations.
pkg/cmd/ - Subdirectory for command-line interface tools.
pkg/cmd/agent/ - Subdirectory for agent command-line tools.
pkg/cmd/apikey/ - Subdirectory for API key command-line tools.
pkg/cmd/containerregistry/ - Subdirectory for container registry command-line tools.
pkg/cmd/gitprovider/ - Subdirectory for Git provider command-line tools.
pkg/cmd/output/ - Subdirectory for output command-line tools.
pkg/cmd/ports/ - Subdirectory for port command-line tools.
pkg/cmd/profile/ - Subdirectory for profile command-line tools.
pkg/cmd/profiledata/ - Subdirectory for profiledata command-line tools.
pkg/cmd/projectconfig/ - Subdirectory for project configuration command-line tools.
pkg/cmd/provider/ - Subdirectory for provider command-line tools.
pkg/cmd/server/ - Subdirectory for server command-line tools.
pkg/cmd/target/ - Subdirectory for target command-line tools.
pkg/cmd/telemetry/ - Subdirectory for telemetry command-line tools.
pkg/cmd/workspace/ - Subdirectory for workspace command-line tools.
pkg/cmd/workspacemode/ - Subdirectory for workspace mode command-line tools.
pkg/common/ - Subdirectory for common packages and utilities.
pkg/containerregistry/ - Subdirectory for container registry package.
pkg/db/ - Subdirectory for database-related packages and scripts.
pkg/db/dto/ - Subdirectory for database data transfer objects.
pkg/docker/ - Subdirectory for Docker-related packages and scripts.
pkg/frpc/ - Subdirectory for Fanout Reverse Proxy (frpc) package.
pkg/git/ - Subdirectory for Git-related packages and scripts.
pkg/gitprovider/ - Subdirectory for Git provider package.
pkg/gitprovider/gitnessclient/ - Subdirectory for Git provider GitHub client.
pkg/ide/ - Subdirectory for IDE-related packages and scripts.
pkg/logs/ - Subdirectory for logging-related packages and scripts.
pkg/os/ - Subdirectory for operating system-related packages and scripts.
pkg/ports/ - Subdirectory for port-related packages and scripts.
pkg/posthogservice/ - Subdirectory for PostHog service package.
pkg/profiledata/ - Subdirectory for profiledata package.
pkg/provider/ - Subdirectory for provider packages and scripts.
pkg/provider/manager/ - Subdirectory for provider manager.
pkg/provider/util/ - Subdirectory for provider utilities.
pkg/provisioner/ - Subdirectory for provisioner packages and scripts.
pkg/server/ - Subdirectory for server-related packages and scripts.
pkg/server/apikeys/ - Subdirectory for API keys server-side.
pkg/server/containerregistries/ - Subdirectory for container registries server-side.
pkg/server/gitproviders/ - Subdirectory for Git providers server-side.
pkg/server/headscale/ - Subdirectory for Headscale server-side.
pkg/server/profiledata/ - Subdirectory for profiledata server-side.
pkg/server/projectconfig/ - Subdirectory for project configuration server-side.
pkg/server/providertargets/ - Subdirectory for provider targets server-side.
pkg/server/registry/ - Subdirectory for registry server-side.
pkg/server/workspaces/ - Subdirectory for workspaces server-side.
pkg/ssh/ - Subdirectory for SSH-related packages and scripts.
pkg/tailscale/ - Subdirectory for Tailscale package.
pkg/tailscale/tunnel/ - Subdirectory for Tailscale tunnel.
pkg/telemetry/ - Subdirectory for telemetry-related packages and scripts.
pkg/views/ - Subdirectory for view templates.
pkg/views/containerregistry/ - Subdirectory for container registry view templates.
pkg/views/env/ - Subdirectory for environment variable view templates.
pkg/views/gitprovider/ - Subdirectory for Git provider view templates.
pkg/views/ide/ - Subdirectory for IDE view templates.

Entrypoints

Below are files we identified as entrypoints for to the codebase. This is where the application starts and a good place to start when learning.

cmd/daytona/main.go - This is the main entrypoint of the Daytona application. The 'main' function initializes the application and starts the server. The 'init' function is used for initialization tasks such as setting up logging and loading configuration files.