Source example/js/app.setup.js

define(function () {
    /**
     * @module Example%%app%setup
     * @description Example overidden app settings
     * @return {object}
     * @see module:bauplan%app
     */
    var AppSettings = {};
    AppSettings.initialized = function() {
        alert("Initialized the app");
    };

    return AppSettings;

});