├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .yo-rc.json ├── README.md ├── client └── README.md ├── package.json └── server ├── boot ├── authentication.js └── root.js ├── component-config.json ├── config.json ├── datasources.json ├── middleware.development.json ├── middleware.json ├── model-config.json └── server.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /client/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "loopback" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/.gitignore -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-loopback": {} 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/README.md -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | ## Client 2 | 3 | This is the place for your application front-end files. 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/package.json -------------------------------------------------------------------------------- /server/boot/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/boot/authentication.js -------------------------------------------------------------------------------- /server/boot/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/boot/root.js -------------------------------------------------------------------------------- /server/component-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/component-config.json -------------------------------------------------------------------------------- /server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/config.json -------------------------------------------------------------------------------- /server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/datasources.json -------------------------------------------------------------------------------- /server/middleware.development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/middleware.development.json -------------------------------------------------------------------------------- /server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/middleware.json -------------------------------------------------------------------------------- /server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/model-config.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eggheadio-projects/egghead-loopback/HEAD/server/server.js --------------------------------------------------------------------------------