diff --git a/README.md b/README.md index d3a0177..f40a8d8 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,10 @@ Edit `sst.config.ts` and set your default AWS profile and region. ```shell npm i -g pnpm # install pnpm globally pnpm i # install dependencies + generate types from DB and GQL schemas +pnpm commit-hooks # install commit hooks for linting and formatting (optional) pnpm db:migrate # run DB migrations -pnpm dev # start local dev server +pnpm dev # start AWS local dev environment +pnpm dev:web # start NextJS frontend dev server ``` ### Config diff --git a/package.json b/package.json index 7a278d8..f82940a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "type": "module", "scripts": { - "prepare": "pnpm exec husky", + "commit-hooks": "pnpm exec husky", "postinstall": "pnpm generate:all", "dev": "pnpm dev:sst", "dev:sst": "sst dev",