Simple ToDo-like application for managing recipes in a restaurant. It allows to list, add, edit and delete recipes. There's also a simple search bar for searching by a string.
API Url is defined in environment.ts file. For checking the app with existing API replace the apiURL with a URL generated by https://crudcrud.com.
There's also an option for using mocked API service. Simply replace RecipesService provider in recipes.module.ts with
{ provide: RecipesService, useClass: MockRecipesService }
and the app will work in offline mode.