Skip to content

Instantly share code, notes, and snippets.

@adeleke5140
Last active June 22, 2022 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adeleke5140/2141e7e4bd2e1deea01a6385a2f891b0 to your computer and use it in GitHub Desktop.
Save adeleke5140/2141e7e4bd2e1deea01a6385a2f891b0 to your computer and use it in GitHub Desktop.
Starting both client and server
{
"name": "name-of-project",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"install-client":"yarn --cwd client install",
"install-server":"yarn --cwd server install",
"server": "yarn --cwd server run watch",
"client": "yarn --cwd client start",
"watch": "yarn run server & yarn run client",
"test":"yarn --cwd serve run test && yarn --cwd client run test"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment