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
2 changes: 1 addition & 1 deletion email-sender/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"start": "ts-node src/services.ts",
"start.watch": "nodemon src/services.ts",
"dev": "pnpm start.watch",
"dev": "npm run start.watch",
"build": "tsc --build",
"clean": "rm -rf node_modules",
"schedule": "ts-node ./scheduleWorkflow.ts",
Expand Down
4 changes: 2 additions & 2 deletions email-sender/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ add OPENAI_API_KEY, SENDGRID_API_KEY, FROM_EMAIL, TO_EMAIL in .env

```bash
npm i
npm build
npm dev
npm run build
npm run dev
```

Your code will be running and syncing with Restack engine to execute workflows or functions.
Expand Down
2 changes: 1 addition & 1 deletion stripe-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"start": "ts-node src/services.ts",
"start.watch": "nodemon src/services.ts",
"dev": "pnpm start.watch",
"dev": "npm run start.watch",
"build": "tsc --build",
"clean": "rm -rf node_modules",
"schedule": "ts-node ./scheduleWorkflow.ts",
Expand Down
4 changes: 2 additions & 2 deletions stripe-ai/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ add OPENAI_API_KEY, STRIPE_SECRET_KEY in .env

```bash
npm i
npm build
npm dev
npm run build
npm run dev
```

Your code will be running and syncing with Restack engine to execute workflows or functions.
Expand Down