https://github.com/anmavrid/webgme-bip
Raw File
Tip revision: f99af3a70664bd674443e1557b91c0df11f99444 authored by Anastasia Mavridou on 06 October 2017, 21:26:10 UTC
Update README.md
Tip revision: f99af3a
app.js
// jshint node: true
'use strict';
process.chdir(__dirname);

var gmeConfig = require('./config'),
    webgme = require('webgme'),
    myServer;

webgme.addToRequireJsPaths(gmeConfig);

myServer = new webgme.standaloneServer(gmeConfig);
myServer.start(function () {
    //console.log('server up');
});
back to top