Sha256: a7ce005f10cfeded601d8cfe040ba4c1fc95e0a94e696cb86ff946be5044f49f

Contents?: true

Size: 1.67 KB

Versions: 2

Compression:

Stored size: 1.67 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": [
  	'http://extjs.cachefly.net/ext-3.1.1/resources/css/ext-all.css'
  ],
  
  //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", "MyView"]} will load /app/views/index/Index.js and app/views/index/MyView.js
  "views": [
    {"layout": ["Menu"]},
    {"home" : ["Index"]}
  ]
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
extjs-mvc-0.4.0.b lib/extjs-mvc/generators/templates/app/config/environment.json
extjs-mvc-0.4.0.a lib/extjs-mvc/generators/templates/app/config/environment.json