- install pnpm https://pnpm.io/installation
pnpm install
- At the root the app, find the
env.sample
. - Copy the file env.sample and rename that copy to
.env
- Add your own env vars there
To develop on the app
pnpm dev:me
To build the app
pnpm build:me
To update the package dependencies
pnpm update --interactive
If you get an error like this:
hint: The '.husky/commit-msg' hook was ignored because it's not set as executable.
You can fix it by running:
chmod ug+x .husky/*
chmod ug+x .git/hooks/*