From the root of the monorepo, install all workspace dependencies :
bun installmove to the /store package and generate the prisma-client :
bun run prisma:generatemove to the /config package and add your .env :
BACKEND_PORT=3001
JWT_SECRET=your-jwt-secret
DATABASE_URL=your-database-connection-string
RESEND_API_KEY=your-resend-api-key
CLIENT_ID_GITHUB=your-github-client-id
CLIENT_SECRET_GITHUB=your-github-client-secretmove to the /config package and in constants.ts configure your client and server port's accordingly
move to the /api package, Inside src/email.ts change the "from-address" and update the "bold-tag" to your address/domain from resend and your labs page or your service name accordingly
from: "your-resend-email/domain"
<b>your-name/your-email-service</b>!
