Skip to content

Commit

Permalink
feat: adds log page for builds
Browse files Browse the repository at this point in the history
### What does this PR do?

* Adds a log action button that will show the logs in real-time in a
  separate page
* Automatically refreshes / appends to the output
* Uses terminal settings from Podman Desktop to match what the user has
  setup.

### Screenshot / video of UI

<!-- If this PR is changing UI, please include
screenshots or screencasts showing the difference -->

### What issues does this PR fix or reference?

<!-- Include any related issues from Podman Desktop
repository (or from another issue tracker). -->

Closes #677

### How to test this PR?

1. Start a build
2. Click the "logs" button on the dashboard
3. Watch logs propagate

<!-- Please explain steps to reproduce -->

Signed-off-by: Charlie Drage <[email protected]>
  • Loading branch information
cdrage committed Sep 24, 2024
1 parent 0f65a05 commit 4c2cf95
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/backend/src/api-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ import { telemetryLogger } from './extension';
import { checkPrereqs, isLinux, getUidGid } from './machine-utils';
import * as fs from 'node:fs';
import path from 'node:path';
import * as fs from 'node:fs';
import path from 'node:path';
import { getContainerEngine } from './container-utils';

export class BootcApiImpl implements BootcApi {
Expand Down

0 comments on commit 4c2cf95

Please sign in to comment.