Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ coverage
acceptance/*/dist
packages/*/dist
extensions/*/dist
appsody/*/dist
examples/*/dist
benchmark/dist
**/package
Expand Down
2 changes: 2 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
"packages/*/dist",
"extensions/*/dist",
"packages/cli/",
"appsody/base/dist",
"examples/*/dist"
],
"exclude": [
"packages/*/dist/__tests__/",
"packages/cli/test/",
"extensions/*/dist/__tests__/",
"appsody/base/dist/__tests__/",
"examples/*/dist/__tests__/",
"**/.sandbox/"
],
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ packages/*/dist
extensions/*/dist
examples/*/dist
benchmark/dist
appsody/*/dist
sandbox/**/*
*.json
CHANGELOG.md
Expand Down
13 changes: 13 additions & 0 deletions appsody/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# LoopBack Stack for Appsody

This directory contains modules for
[nodejs-loopback](https://github.com/appsody/stacks/tree/master/incubator/nodejs-loopback) -
a LoopBack 4 stack for [Appsody](https://appsody.dev/).

1. `base`: The base module that sets up the user application with cloud native
components, including:

- [@loopback/extension-health](https://github.com/strongloop/loopback-next/tree/master/extensions/health)
- [@loopback/extension-metrics](https://github.com/strongloop/loopback-next/tree/master/extensions/metrics)

2. `user-app`: The template user application for testing purpose
1 change: 1 addition & 0 deletions appsody/base/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=true
25 changes: 25 additions & 0 deletions appsody/base/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Copyright (c) IBM Corp. 2019. All Rights Reserved.
Node module: @loopback/appsody-base
This project is licensed under the MIT License, full text below.

--------

MIT license

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
6 changes: 6 additions & 0 deletions appsody/base/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Copyright IBM Corp. 2019. All Rights Reserved.
// Node module: @loopback/appsody-base
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

export * from './dist';
6 changes: 6 additions & 0 deletions appsody/base/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Copyright IBM Corp. 2019. All Rights Reserved.
// Node module: @loopback/appsody-base
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

module.exports = require('./dist');
6 changes: 6 additions & 0 deletions appsody/base/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Copyright IBM Corp. 2019. All Rights Reserved.
// Node module: @loopback/appsody-base
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

export * from './src';
Loading