Sha256: dc662c85f525ea349e7a11cfa30212089dd204530f7e4f714831b6852036d36b
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
# The `src` Directory ## Overview The `src/` directory contains all code used in the application along with all tests of such code. ``` src/ |- app/ | |- about/ | |- home/ | |- app.js | |- app.spec.js |- assets/ |- common/ | |- plusOne/ |- less/ | |- main.less | |- variables.less |- index.html ``` - `src/app/` - application-specific code, i.e. code not likely to be reused in another application. [Read more »](app/README.md) - `src/assets/` - static files like fonts and images. [Read more »](assets/README.md) - `src/common/` - third-party libraries or components likely to be reused in another application. [Read more »](common/README.md) - `src/less/` - LESS CSS files. [Read more »](less/README.md) - `src/index.html` - this is the HTML document of the single-page application. See below. See each directory for a detailed explanation. ## `index.html` The `index.html` file is the HTML document of the single-page application (SPA) that should contain all markup that applies to everything in the app, such as the header and footer. It declares with `ngApp` that this is `ngBoilerplate`, specifies the main `AppCtrl` controller, and contains the `ngView` directive into which route templates are placed. Unlike any other HTML document (e.g. the templates), `index.html` is compiled as a Grunt template, so variables from `Gruntfile.js` and `package.json` can be referenced from within it. Changing `name` in `package.json` from "ng-boilerplate" will rename the resultant CSS and JavaScript placed in `build/`, so this HTML references them by variable for convenience.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xing-framework-0.0.2 | default_configuration/base_app/frontend/src/README.md |