This repository contains all the code related to the Entail App backend.
- Install pnpm and rush globally:
$ npm i -g pnpm
$ pnpm i -g @microsoft/rush
- Clone the repository and run
rush install && rush build
inside of it - Write your code!
- You MUST NOT install a package with
pnpm i <package name>
- You MUST either:
- Install the package using
rush add [--dev] -p <package name>
inside of the specific folder OR - Add the package manually to the package.json file and run
rush update
- Install the package using
- You SHOULD use
rushx
to run package.json scripts inside each respective folder - You MAY use flags found here in combination with commands to select subsets of dependencies
- Easy commands for specific things like running watchers etc will be placed in this file