Copy the example environment file and configure your variables:
cp .env.example .env
Then, install the necessary dependencies with the package manager of your choosing:
pnpm install
You need to then push the SQL schema to your database:
pnpm run db:push
Finally, either build for production or start a dev server:
# Production
pnpm run build
pnpm run start
# Development
pnpm run dev