Skip to content

Commit

Permalink
chore: Update npm start scripts for server and chat
Browse files Browse the repository at this point in the history
  • Loading branch information
HlexNC committed Jun 30, 2024
1 parent 6be5211 commit 88538e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 94 deletions.
8 changes: 4 additions & 4 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node swagger && node ./src/bin/www",
"start-chat": "node ./src/sockets/wsServer_ChatGPT.js",
"start-pain": "node ./src/sockets/wsServer_Assistant.js",
"start:all": "concurrently \"npm run start\" \"npm run start-chat\""
"start": "node swagger && node ./src/server.js",
"start:chat": "node ./src/sockets/wsServer_ChatGPT.js",
"start:pain": "node ./src/sockets/wsServer_Assistant.js",
"start:all": "concurrently \"npm run start\" \"npm run start:chat\""
},
"dependencies": {
"concurrently": "^8.2.2",
Expand Down
90 changes: 0 additions & 90 deletions server/src/bin/www

This file was deleted.

0 comments on commit 88538e7

Please sign in to comment.