Sha256: 26a18f1e8da236c31e15b2300d814e28c64f4c1fa16158a2b9bc1fb697d76930
Contents?: true
Size: 1.63 KB
Versions: 13
Compression:
Stored size: 1.63 KB
Contents
/** * This is the main environment file, which defines the files the comprise your application, and other settings. * To add new files to your application, simply add them to the object in the appropriate place (see the inline comments for details) */ { /** * Directory paths. */ "pluginsDir" : '../vendor/plugins', "libDir" : '../lib', "configDir" : '../config', "overridesDir": '../config/overrides', "appDir" : '../app', "vendor" : ['mvc'], "mvcFilename" : 'ext-mvc-all-min', /** * Use config/application for general framework configuration */ "config" : ['app/App', 'config/application', 'config/routes'], /** * All stylesheets to be loaded. These are all taken to be relative to the public/stylesheets directory, and the .css is * automatically appended */ "stylesheets": [ ], //Overrides to include. These files should be located in the config/overrides directory "overrides": [ ], //Plugins to include. Each will load vendor/plugins/SomePlugin/SomePlugin-all.js "plugins": [ ], //All of the models in this application, found in the app/models folder "models": [ ], //All of the controllers in this application, found in the app/controllers folder "controllers" : [ "application", "home" ], //All of the views in this application, as an object with the subfolder inside app/views as the key, and an array of filenames as the value. //e.g.: views: {"index": ["index", "edit", "new", "view"]} will load /app/views/index/index.js and app/views/index/my_view.js "views": [ {"layout": ["menu"]}, {"home" : ["index"]} ] }
Version data entries
13 entries across 13 versions & 1 rubygems