@@ -42,29 +42,29 @@ Run `grunt` for building, `grunt serve` for preview, and `grunt serve:dist` for
4242Overview
4343
4444 ├── client
45- │ ├── app - All of our app specific components go in here
46- │ ├── assets - Custom assets: fonts, images, etc…
47- │ ├── components - Our reusable components, non-specific to to our app
45+ │ ├── app - All of our app specific components go in here
46+ │ ├── assets - Custom assets: fonts, images, etc…
47+ │ ├── components - Our reusable components, non-specific to to our app
4848 │
49- ├── e2e - Our protractor end to end tests
49+ ├── e2e - Our protractor end to end tests
5050 │
5151 └── server
52- ├── api - Our apps server api
53- ├── auth - For handling authentication with different auth strategies
54- ├── components - Our reusable or app-wide components
55- ├── config - Where we do the bulk of our apps configuration
56- │ └── local.env.js - Keep our environment variables out of source control
57- │ └── environment - Configuration specific to the node environment
58- └── views - Server rendered views
52+ ├── api - Our apps server api
53+ ├── auth - For handling authentication with different auth strategies
54+ ├── components - Our reusable or app-wide components
55+ ├── config - Where we do the bulk of our apps configuration
56+ │ └── local.env.js - Keep our environment variables out of source control
57+ │ └── environment - Configuration specific to the node environment
58+ └── views - Server rendered views
5959
6060An example client component in ` client/app `
6161
6262 main
63- ├── main.js - Routes
64- ├── main.controller.js - Controller for our main route
65- ├── main.controller.spec.js - Test
66- ├── main.html - View
67- └── main.less - Styles
63+ ├── main.js - Routes
64+ ├── main.controller.js - Controller for our main route
65+ ├── main.controller.spec.js - Test
66+ ├── main.html - View
67+ └── main.less - Styles
6868
6969An example server component in ` server/api `
7070
0 commit comments