jas3333 / GPT-Helper

MIT License
140 stars 37 forks source link

latest update negates previous client startup #30

Closed dlarue closed 1 year ago

dlarue commented 1 year ago

Thanks for updating the code but I kinda liked or was used to the 'npm start' from the client directory which not only started the GPT-Helper server but also spawned a browser tab loaded to the chat server.

The current method of starting does work and I was able to write a bash script to do what the previous client did but it's not as elegant.

!/bin/bash

HERE=pwd cd ~/GPT-Helper/ google-chrome http://localhost:4001 node server.js cd $HERE

jas3333 commented 1 year ago

Ok just pushed an update that should do what you want. Let me know if you have any issues with it.

dlarue commented 1 year ago

cool, running 'npm start' in the in the project root starts the server and spawns a browser tab. Thx!