loopback/test/fixtures/e2e/server/server.js

22 lines
679 B
JavaScript
Raw Normal View History

2020-01-21 19:19:18 +00:00
// Copyright IBM Corp. 2015,2019. All Rights Reserved.
2016-05-03 22:50:21 +00:00
// 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 app = module.exports = loopback({localRegistry: true});
const models = require('./models');
const TestModel = models.TestModel;
2014-04-14 19:25:41 +00:00
const apiPath = '/api';
2014-04-14 19:25:41 +00:00
app.use(apiPath, loopback.rest());
TestModel.attachTo(loopback.memory());
app.model(TestModel);
app.model(TestModel.getChangeModel());
// app.use(loopback.static(path.join(__dirname, 'public')));
2014-04-14 19:25:41 +00:00
app.use(loopback.urlNotFound());
app.use(loopback.errorHandler());