Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .cursor/rules/calf.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,13 @@ calf/
│ │ └── open.go Cross-platform "open URL" helper (open/xdg-open/rundll32)
│ ├── test/ External test packages (see Testing Conventions)
│ │ ├── api/api_test.go
│ │ ├── buildhistory/history_test.go
│ │ ├── buildstore/buildstore_test.go
│ │ ├── config/config_test.go
│ │ └── runtime/ command_error, image_history, localhost_proxy, nerdctl, registry, volume_detail tests
│ │ ├── dockercli/context_test.go
│ │ ├── dockerhub/device_test.go
│ │ ├── runtime/ build_enrich, build_parser, command_error, image_history, localhost_proxy, nerdctl, network, registry, volume_detail tests
│ │ └── volumeexport/ name_pattern, schedule_timing tests
│ ├── version/version.go Single Version constant
│ └── go.mod / go.sum Module github.com/enegalan/calf/backend, Go 1.22.1
├── ui/ Flutter application
Expand Down
7 changes: 6 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,13 @@ calf/
│ │ └── open.go Cross-platform "open URL" helper (open/xdg-open/rundll32)
│ ├── test/ External test packages (see Testing Conventions)
│ │ ├── api/api_test.go
│ │ ├── buildhistory/history_test.go
│ │ ├── buildstore/buildstore_test.go
│ │ ├── config/config_test.go
│ │ └── runtime/ command_error, image_history, localhost_proxy, nerdctl, registry, volume_detail tests
│ │ ├── dockercli/context_test.go
│ │ ├── dockerhub/device_test.go
│ │ ├── runtime/ build_enrich, build_parser, command_error, image_history, localhost_proxy, nerdctl, network, registry, volume_detail tests
│ │ └── volumeexport/ name_pattern, schedule_timing tests
│ ├── version/version.go Single Version constant
│ └── go.mod / go.sum Module github.com/enegalan/calf/backend, Go 1.22.1
├── ui/ Flutter application
Expand Down
39 changes: 0 additions & 39 deletions backend/internal/buildhistory/artifacts_test.go

This file was deleted.

56 changes: 0 additions & 56 deletions backend/internal/buildhistory/history_test.go

This file was deleted.

39 changes: 0 additions & 39 deletions backend/internal/buildhistory/inspect_test.go

This file was deleted.

6 changes: 3 additions & 3 deletions backend/internal/dockercli/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ type dockerConfig struct {

func StatusFor(socket string, managed bool) (Status, error) {
status := Status{
Managed: managed,
Socket: socket,
Managed: managed,
Socket: socket,
CurrentContext: readCurrentContext(),
}

if _, err := exec.LookPath("docker"); err != nil {
return status, nil
}

status.Available = true
status.CurrentContext = readCurrentContext()
status.CalfActive = status.CurrentContext == ContextName

ctx, cancel := context.WithTimeout(context.Background(), cliTimeout)
Expand Down
161 changes: 0 additions & 161 deletions backend/internal/migration/compose_migration_test.go

This file was deleted.

Loading
Loading