a simple NestJS API for managing and sharing recipes.
- JWT Authentication & Verification
- Create Recipes
- Search & Filter
- Pagination – fetching recipes in pages for easier browsing.
POST /auth/signup– create a new chef account.POST /auth/signin– login and get JWT token.POST /chef/create-recipe– create a new recipe (protected route that requires JWT).GET /recipes– public route, list recipes, supports search via query paramskey,value,search.