mirror of
https://github.com/fergalmoran/dss-mobile.git
synced 2025-12-22 09:50:53 +00:00
124 lines
4.0 KiB
JSON
124 lines
4.0 KiB
JSON
{
|
|
/**
|
|
* The application's namespace, used by Sencha Command to generate classes
|
|
*/
|
|
"name": "DssMobile",
|
|
|
|
/**
|
|
* The file path to this application's front HTML document, relative to this app.json file
|
|
*/
|
|
"indexHtmlPath": "index.html",
|
|
|
|
/**
|
|
* The absolute URL to this application in development environment, i.e: the URL to run this application
|
|
* on your web browser during development, e.g: "http://localhost/myapp/index.html".
|
|
*
|
|
* This value is needed when build to resolve your application's dependencies if it requires server-side resources
|
|
* that are not accessible via file system protocol.
|
|
*/
|
|
"url": null,
|
|
|
|
/**
|
|
* List of all JavaScript assets in the right execution order.
|
|
* Each item is an object with the following format:
|
|
* {
|
|
* "path": "path/to/script.js" // Path to file, if local file it must be relative to this app.json file
|
|
* "remote": true // (Optional)
|
|
* // - Defaults to undefined (falsey) to signal a local file which will be copied
|
|
* // - Specify true if this file is a remote file which will not to be copied
|
|
* "update": "delta" // (Optional)
|
|
* // - If not specified, this file will only be loaded once, and
|
|
* // cached inside localStorage until this value is changed.
|
|
* // - "delta" to enable over-the-air delta update for this file
|
|
* // - "full" means full update will be made when this file changes
|
|
* "x-bootstrap": true // (Optional)
|
|
* // Indicates a development mode only dependency.
|
|
* // These files will not be copied into the build directory or referenced
|
|
* // in the generate app.json manifest for the micro loader.
|
|
*
|
|
* }
|
|
*/
|
|
"js": [
|
|
{
|
|
"path": "phonegap.js",
|
|
"remote": true
|
|
},
|
|
{
|
|
"path": "touch/sencha-touch.js",
|
|
"x-bootstrap": true
|
|
},
|
|
{
|
|
"path": "bootstrap.js",
|
|
"x-bootstrap": true
|
|
},
|
|
{
|
|
"path": "app.js",
|
|
"bundle": true, /* Indicates that all class dependencies are concatenated into this file when build */
|
|
"update": "delta"
|
|
}
|
|
],
|
|
"css": [
|
|
{
|
|
|
|
"path": "resources/css/app.css"
|
|
}
|
|
],
|
|
|
|
/**
|
|
* Used to automatically generate cache.manifest (HTML 5 application cache manifest) file when you build
|
|
*/
|
|
"appCache": {
|
|
/**
|
|
* List of items in the CACHE MANIFEST section
|
|
*/
|
|
"cache": [
|
|
"index.html"
|
|
],
|
|
/**
|
|
* List of items in the NETWORK section
|
|
*/
|
|
"network": [
|
|
"*"
|
|
],
|
|
/**
|
|
* List of items in the FALLBACK section
|
|
*/
|
|
"fallback": []
|
|
},
|
|
|
|
/**
|
|
* Extra resources to be copied along when build
|
|
*/
|
|
"resources": [
|
|
"config.xml",
|
|
"resources/images",
|
|
"resources/icons",
|
|
"resources/startup"
|
|
],
|
|
|
|
/**
|
|
* File / directory name matchers to ignore when copying to the builds, must be valid regular expressions
|
|
*/
|
|
"ignore": [
|
|
"\.svn$"
|
|
],
|
|
|
|
/**
|
|
* Directory path to store all previous production builds. Note that the content generated inside this directory
|
|
* must be kept intact for proper generation of deltas between updates
|
|
*/
|
|
"archivePath": "archive",
|
|
|
|
/**
|
|
* List of package names to require for the cmd build process
|
|
*/
|
|
"requires": [
|
|
],
|
|
|
|
/**
|
|
* Uniquely generated id for this application, used as prefix for localStorage keys.
|
|
* Normally you should never change this value.
|
|
*/
|
|
"id": "7751b424-8a34-4ee3-aadd-57742640eb18"
|
|
}
|