-
Notifications
You must be signed in to change notification settings - Fork 101
Home
Eric Mendes Dantas edited this page Apr 29, 2015
·
16 revisions
Initial structure:
After running yo ng-fullstack
, you'll get:
├── client
│ └── dev
│ ├── js
│ ├── components
│ ├── css
│ ├── partials
│ └── imgs
│
├── server
│ ├── api
│ │ ├── todo
│ │ │ ├── dao
│ │ │ ├── model
│ │ │ ├── controller
│ │ │ └── routes
│ │ │
│ ├── auth
│ │ ├── local
│ │ │
│ ├── commons
│ │ ├── socket
│ │ └── static
│ │
│ ├── config
│ ├── constants
│ └── routes
│
└── tests
├── client
│ ├── _helpers
│ ├── components
│ │ └── todo
│ │
│ └── todo
│ ├── dao
│ ├── model
│ └── routes
│
├── e2e
│ └── _helpers
│
└── server
├── _helpers
└── todo
├── dao
├── model
├── controller
└── routes