Skip to content

Commit c5d68a6

Browse files
committed
Refactor import path in callWorkflow.ts and add console.log in room.ts
1 parent 9e56155 commit c5d68a6

File tree

5 files changed

+393
-54
lines changed

5 files changed

+393
-54
lines changed

voice/callWorkflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { client } from "../hello/src/client";
1+
import { client } from "./src/client";
22

33
async function scheduleWorkflow() {
44
try {

voice/package.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@
1111
"build": "tsc --build",
1212
"clean": "rm -rf node_modules",
1313
"call": "ts-node ./callWorkflow.ts",
14-
"ngrok": "ngrok http 4000"
14+
"ngrok": "ngrok http 4000",
15+
"restack-up": "dotenv -e .env -- tsx restack_up.mjs",
16+
"docker:build:server": "docker build -f Dockerfile.server -t voice .",
17+
"docker:run:server": "docker run -d -p 4000:4000 voice",
18+
"docker:build:services": "docker build -f Dockerfile.services -t voice .",
19+
"docker:run:services": "docker run -d -p 4000:4000 voice"
1520
},
1621
"keywords": [],
1722
"author": "",
1823
"license": "ISC",
1924
"dependencies": {
20-
"@restackio/ai": "0.0.85",
21-
"@temporalio/workflow": "1.11.1",
25+
"@restackio/ai": "0.0.86",
26+
"@temporalio/workflow": "1.11.5",
2227
"cors": "2.8.5",
2328
"dotenv": "16.4.5",
2429
"express": "4.21.0",
@@ -32,14 +37,16 @@
3237
"zod": "3.23.8"
3338
},
3439
"devDependencies": {
35-
"@restackio/cloud": "1.0.19",
40+
"@restackio/cloud": "1.0.21",
3641
"@types/cors": "2.8.17",
3742
"@types/express": "4.17.21",
3843
"@types/node": "22.5.4",
3944
"@types/uuid": "10.0.0",
4045
"@types/ws": "8.5.12",
4146
"nodemon": "3.1.4",
42-
"ts-node-dev": "2.0.0"
47+
"ts-node-dev": "2.0.0",
48+
"tsx": "4.19.2",
49+
"dotenv-cli": "7.4.4"
4350
},
4451
"optionalDependencies": {
4552
"bufferutil": "4.0.8"

0 commit comments

Comments
 (0)