// Copyright IBM Corp. 2013,2016. All Rights Reserved.
// Node module: loopback
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT

var g = require('../../lib/globalize');
var loopback = require('../../');
var app = loopback();

app.use(loopback.rest());


var dataSource = app.dataSource('db', { adapter: 'memory' });

var Color = dataSource.define('color', {
  'name': String,
});

Color.create({ name: 'red' });
Color.create({ name: 'green' });
Color.create({ name: 'blue' });

Color.all(function() {
  console.log(arguments);
});

app.listen(3000);

g.log('a list of colors is available at {{http://localhost:3000/colors}}');