// Copyright IBM Corp. 2015,2019. All Rights Reserved. // Node module: loopback // This file is licensed under the MIT License. // License text available at https://opensource.org/licenses/MIT 'use strict'; const loopback = require('../../../../index'); const boot = require('loopback-boot'); const app = module.exports = loopback({localRegistry: true}); const errorHandler = require('strong-error-handler'); boot(app, __dirname); const apiPath = '/api'; app.use(apiPath, loopback.rest()); app.use(loopback.urlNotFound()); app.use(errorHandler());