mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
setting up bootstrapping
This commit is contained in:
parent
a2460ed385
commit
a2a83f422a
3 changed files with 5 additions and 5 deletions
2
app.js
2
app.js
|
|
@ -4,7 +4,7 @@ var inspector = {};
|
||||||
|
|
||||||
requirejs.config({
|
requirejs.config({
|
||||||
nodeRequire: require,
|
nodeRequire: require,
|
||||||
baseUrl: 'lib'
|
baseUrl: 'app'
|
||||||
});
|
});
|
||||||
|
|
||||||
var port = process.argv[2]
|
var port = process.argv[2]
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
define([
|
define([
|
||||||
"Server/HttpServer",
|
"Bootstrap/HttpServer",
|
||||||
"Server/Socket",
|
"Bootstrap/Socket",
|
||||||
"Server/Coordinator"
|
"Lobby/Coordinator"
|
||||||
],
|
],
|
||||||
|
|
||||||
function(HttpServer, Socket, Coordinator) {
|
function(HttpServer, Socket, Coordinator) {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
requirejs.config({
|
requirejs.config({
|
||||||
baseUrl: 'lib'
|
baseUrl: 'app'
|
||||||
});
|
});
|
||||||
|
|
||||||
var inspector = {};
|
var inspector = {};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue