I was following React + Apollo tutorial, but had to stop at the point to ask me to run the server and app simultaneously. I tried to run the app first by 'yarn start' in the current directory and move to 'server' directory to run the server by 'yarn dev' after terminating the app, 'ctrl + c', which isn't running two things at the same time.
What I Did
in apollo directory
yarn start
ctrl + c
cd server
in server directory
yarn dev
How can I run the server(in server directory) and app(in apollo directory) at the same time? Thanks!