add initial client config for loopback client

This commit is contained in:
Berkeley Martinez
2015-06-25 23:05:11 -07:00
parent cc9af1c67b
commit fea17cad7f
6 changed files with 70 additions and 0 deletions

8
client/loopbackClient.js Normal file
View File

@@ -0,0 +1,8 @@
var loopback = require('loopback'),
boot = require('loopback-boot');
var app = loopback();
boot(app, __dirname);
module.exports = app;