mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-19 15:18:03 +00:00
fix(docker): include apps/shared in dashboard image build
The shared websocket package is a web file: dependency but was excluded by .dockerignore and never copied into the Docker build context. Also fix tsc -b errors: expose buildWsUrl on api and drop the GatewayClient state getter that conflicted with the shared base class.
This commit is contained in:
parent
216ace4bf3
commit
e9b95dfd19
4 changed files with 10 additions and 5 deletions
|
|
@ -35,10 +35,6 @@ export class GatewayClient extends JsonRpcGatewayClient {
|
|||
});
|
||||
}
|
||||
|
||||
get state(): ConnectionState {
|
||||
return this.connectionState;
|
||||
}
|
||||
|
||||
async connect(token?: string): Promise<void> {
|
||||
if (this.connectionState === "open" || this.connectionState === "connecting") {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue