UNPKG
pads_app
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
playground of algorithms for Distributed Systems(PADS)
github.com/doc-vu/pads
doc-vu/pads
pads_app
/
app.js
14 lines
(11 loc)
•
301 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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');
});