https://github.com/chmanie/generator-angularapp
A yo generator for the angular-app project structure by petebacondarwin
https://github.com/chmanie/generator-angularapp
Last synced: 4 months ago
JSON representation
A yo generator for the angular-app project structure by petebacondarwin
- Host: GitHub
- URL: https://github.com/chmanie/generator-angularapp
- Owner: chmanie
- License: mit
- Created: 2013-06-27T10:28:20.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-29T17:01:49.000Z (almost 12 years ago)
- Last Synced: 2024-10-18T15:17:54.022Z (9 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# generator-angularapp
====================A yo generator for the angular-app project structure by petebacondarwin
## Installation
Get generator-angularapp from npm (it's not there yet):
npm install generator-angularappCreate a directory for your app:
mkdir myApp
cd myAppCreate client and server folders (optional):
mkdir client && mkdir server
cd clientRun yo command:
yo angularapp
## Directory Layout of Generated App
client ------------- main folder for this generator (optional)
src -------------- source files of your app
app ------------ application specific code (divided into subfolders that represent parts of your app)
assets --------- favicon and images
common --------- modular angular files shared between different parts of your app
directives - angular directives
resources -- angular resources
security --- angular security
services --- angular services
styles --------- CSS or SASS files
test ------------- the tests for your app
config --------- configuration files
e2e ------------ end to end tests
unit ----------- unit tests
vendor ----------- 3rd party packages installed by bower (bower components folder)