├── .gitignore ├── README.md ├── client ├── app │ ├── app.ts │ ├── boot.ts │ └── items.ts ├── assets │ ├── css │ │ └── app.css │ └── img │ │ └── eggly-logo.png ├── config.js └── index.html ├── package.json ├── server └── api │ └── db.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/README.md -------------------------------------------------------------------------------- /client/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/app/app.ts -------------------------------------------------------------------------------- /client/app/boot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/app/boot.ts -------------------------------------------------------------------------------- /client/app/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/app/items.ts -------------------------------------------------------------------------------- /client/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/assets/css/app.css -------------------------------------------------------------------------------- /client/assets/img/eggly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/assets/img/eggly-logo.png -------------------------------------------------------------------------------- /client/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/config.js -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/client/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/package.json -------------------------------------------------------------------------------- /server/api/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/server/api/db.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robwormald/ngrx-rest-app/HEAD/tsconfig.json --------------------------------------------------------------------------------