forked from retoor/devplacepy
feat: add project fork async job service with cli prune/clear commands and shared container image build target
This commit is contained in:
@@ -20,6 +20,9 @@ import { UserAiUsage } from "./UserAiUsage.js";
|
||||
import { Tabs } from "./Tabs.js";
|
||||
import { DeviiTerminal } from "./DeviiTerminal.js";
|
||||
import { ZipDownloader } from "./ZipDownloader.js";
|
||||
import { ProjectForker } from "./ProjectForker.js";
|
||||
import WindowManager from "./components/WindowManager.js";
|
||||
import { ContainerTerminalManager } from "./ContainerTerminalManager.js";
|
||||
|
||||
class Application {
|
||||
constructor() {
|
||||
@@ -46,10 +49,14 @@ class Application {
|
||||
this.apiKey = new ApiKeyManager();
|
||||
this.userAiUsage = new UserAiUsage();
|
||||
this.tabs = new Tabs();
|
||||
this.windows = new WindowManager();
|
||||
this.containerTerminals = new ContainerTerminalManager();
|
||||
this.devii = new DeviiTerminal();
|
||||
this.zipDownloader = new ZipDownloader();
|
||||
this.projectForker = new ProjectForker();
|
||||
}
|
||||
}
|
||||
|
||||
const app = new Application();
|
||||
window.app = app;
|
||||
app.containerTerminals.restore();
|
||||
|
||||
Reference in New Issue
Block a user