New project for a membership registry.
Pre-requisites Node.js v22.
# enable corepack (pnpm)
corepack enable
# install deps
pnpm install
# setup env
cp .env.example .env
# start db
pnpm db:start
# push schema
pnpm db:push
# run dev server
pnpm dev
To create a production version of your app:
pnpm build
You can preview the production build with pnpm preview
.
To deploy your app, you may need to install an adapter for your target environment.