Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 581 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 581 Bytes

Recipes

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.

Serving

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.