use directories for structure

This commit is contained in:
s2
2020-05-26 10:37:57 +02:00
parent 66580d4847
commit ae4aaf2668
1287 changed files with 92093 additions and 13113 deletions

12
app/config.js Normal file
View File

@@ -0,0 +1,12 @@
// env dependent config goes here
(function() {
if (typeof(window.MyApp) === 'undefined') {
window.MyApp = {};
}
MyApp.config = {
somePath: '/blabla/',
someOtherGlobalConfig: 'https://...'
};
})();