I’m using VSC and Rojo with a method that allows me to use multiple project.json files to split the code based on what place it is.
The issue I’m having is I have to type rojo serve NAME.project.json in the VSC terminal for each place manually when I open VSC, and on top of that I have to use the Rojo plugin and type in the port every time.
Is there a way I can automate one or both of these methods?
The rojo serve program is yielding meaning that it will prevent the flow of execution until it is done. You can put tasks into the background by putting an ampersand on the tail of the command
rojo server game.project.json &
rojo server game.lobby.json &