summaryrefslogtreecommitdiff
path: root/src/client/app.js
blob: fbe29ced83caece43a97883e9716c806ef6f810c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
(function() {
    var lib_path = '/static/lib/';
    var config = {
        shim: {
            'socketio': { exports: 'io' },
            'Bacon': {
                deps: ['jquery'],
                exports: 'Bacon',
            }
        },
        paths: {
            autocomplete: lib_path + 'autocomplete',
            caret: lib_path + 'caret',
            Bacon: lib_path + 'Bacon',
            'd3': lib_path + 'd3/d3',
            FileSaver: lib_path + 'FileSaver',
            jquery: lib_path + 'jquery',
            'jquery-ui': lib_path + 'jquery-ui',
            socketio: lib_path + 'socket.io/socket.io.min_0.9.10',
            html2canvas: lib_path + 'html2canvas',
            underscore: lib_path + 'underscore',
            feedback: lib_path + 'feedback',
        }
    }

    if (rz_config.optimized_main) {
        config.paths.main = 'main-built';
    }
    config.urlArgs = (typeof local_config != 'undefined') && local_config.urlArgs;

if (window.is_node) {
    // Testing path only
    console.log('app: running under node');
    config.baseUrl = '../src/';
    window.rhizi_require_config = config;
} else {
    // [!] no need to configure baseUrl, as in
    //     config.baseUrl = ...
    //     generated script URLs include the basepath of app.js

    // Main app path
    require.config(config);

    requirejs(['main'], function(main) {
        console.log('starting rhizi logic');
        main.main();
    });
}
}());