degit github:user/repo
npm i
Please do not add dev dependencies to their own workspace
npm i --save-dev *package_name*
npm i -w client *package_name*
npm i -w server *package_name*
npm run dev
To build:
npm run build
To specify only building client add -w client
the same is for server as well
Look at http://localhost:3000 to see your client and port 5000
for server(backend).
To commit please follow the Conventional Commits rules
This will provide a prompt to help you write good commit messages for us to handle. This will automatically run the git commit command for staged files.
If you want to commit in VSCode I highly recommend using this extension: Conventional Commits
You can access VSCode Conventional Commits in two ways:
Command + Shift + P
orCtrl + Shift + P
, enterConventional Commits
, and pressEnter
.- Click the icon on the Source Control menu. See the image below.