You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| index.ts | Allows importing contents of the `src` folder (for use elsewhere) |
78
-
| index.js | Top-level wireup for execution of the application. |
79
-
| package.json | Your application's package manifest. See [package.json](https://docs.npmjs.com/files/package.json) for details. |
80
-
| tsconfig.json | The TypeScript project configuration. See [tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for details. |
| README.md | The Markdown-based README generated for your application. |
84
-
| LICENSE | A copy of the MIT license. If you do not wish to use this license, please delete this file. |
85
-
| src/application.ts | The application class, which extends [`RestApplication`](http://apidocs.strongloop.com/@loopback%2frest/#RestApplication) by default. This is the root of your application, and is where your application will be configured. |
86
-
| src/index.ts | The starting point of your microservice. This file creates an instance of your application, runs the booter, then attempts to start the [`RestServer`](http://apidocs.strongloop.com/@loopback%2frest/#RestServer) instance bound to the application. |
87
-
| src/sequence.ts | An extension of the [Sequence](Sequence.md) class used to define the set of actions to take during a REST request/response. |
88
-
| src/controllers/README.md | Provides information about the controller directory, how to generate new controllers, and where to find more information. |
89
-
| src/controllers/ping.controller.ts | A basic controller that responds to GET requests at `/ping`. |
90
-
| src/datasources/README.md | Provides information about the datasources directory, how to generate new datasources, and where to find more information. |
91
-
| src/models/README.md | Provides information about the datasources directory, how to generate new datasources, and where to find more information. |
92
-
| src/repositories/README.md | Provides information about the repositories directory, how to generate new repositories, and where to find more information. |
93
-
| test/README.md | Please place your tests in this folder. |
94
-
| test/mocha.opts |[Mocha](https://mochajs.org/) configuration for running your application's tests. |
95
-
| test/acceptance/ping.controller.acceptance.ts | An example test to go with the ping controller in `src/controllers`. |
| index.ts | Allows importing contents of the `src` folder (for use elsewhere) |
79
+
| index.js | Top-level wireup for execution of the application. |
80
+
| package.json | Your application's package manifest. See [package.json](https://docs.npmjs.com/files/package.json) for details. |
81
+
| tsconfig.json | The TypeScript project configuration. See [tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html) for details. |
| README.md | The Markdown-based README generated for your application. |
85
+
| LICENSE | A copy of the MIT license. If you do not wish to use this license, please delete this file. |
86
+
| src/application.ts | The application class, which extends [`RestApplication`](http://apidocs.strongloop.com/@loopback%2frest/#RestApplication) by default. This is the root of your application, and is where your application will be configured. |
87
+
| src/index.ts | The starting point of your microservice. This file creates an instance of your application, runs the booter, then attempts to start the [`RestServer`](http://apidocs.strongloop.com/@loopback%2frest/#RestServer) instance bound to the application. |
88
+
| src/sequence.ts | An extension of the [Sequence](Sequence.md) class used to define the set of actions to take during a REST request/response.|
89
+
| src/controllers/README.md | Provides information about the controller directory, how to generate new controllers, and where to find more information. |
90
+
| src/controllers/ping.controller.ts | A basic controller that responds to GET requests at `/ping`. |
91
+
| src/datasources/README.md | Provides information about the datasources directory, how to generate new datasources, and where to find more information. |
92
+
| src/models/README.md | Provides information about the datasources directory, how to generate new datasources, and where to find more information. |
93
+
| src/repositories/README.md | Provides information about the repositories directory, how to generate new repositories, and where to find more information. |
94
+
| test/README.md | Please place your tests in this folder. |
95
+
| test/mocha.opts |[Mocha](https://mochajs.org/) configuration for running your application's tests. |
96
+
| test/acceptance/ping.controller.acceptance.ts | An example test to go with the ping controller in `src/controllers`. |
0 commit comments