Last active
May 3, 2019 02:06
-
-
Save dancancro/ecb53d1bf5b1fa0dde00638a554af7d5 to your computer and use it in GitHub Desktop.
An ngrx project file structure with fewer unique file names. All unique words are in directory names.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── app | |
│ ├── module.ts | |
│ ├── page.css | |
│ ├── page.html | |
│ ├── page.spec.ts | |
│ ├── page.ts | |
│ ├── routing.ts | |
│ ├── core | |
│ │ ├── about | |
│ │ │ └── page.ts | |
│ │ ├── module.ts | |
│ │ ├── routing.ts | |
│ │ └── store | |
│ │ ├── books | |
│ │ │ ├── book | |
│ │ │ │ ├── actions.ts | |
│ │ │ │ ├── effects.ts | |
│ │ │ │ └── model.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── claims | |
│ │ │ ├── claim | |
│ │ │ │ ├── actions.ts | |
│ │ │ │ ├── model.ts | |
│ │ │ │ └── reducer.ts | |
│ │ │ ├── actions.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── collection | |
│ │ │ ├── actions.ts | |
│ │ │ ├── effects.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── counter | |
│ │ │ ├── actions.test.ts | |
│ │ │ ├── actions.ts | |
│ │ │ ├── model.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── debate | |
│ │ │ ├── data.service.ts | |
│ │ │ └── effects.ts | |
│ │ ├── index.ts | |
│ │ ├── layout | |
│ │ │ ├── actions.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── notes | |
│ │ │ ├── note | |
│ │ │ │ ├── actions.ts | |
│ │ │ │ ├── model.ts | |
│ │ │ │ └── reducer.ts | |
│ │ │ ├── data.service.ts | |
│ │ │ ├── actions.ts | |
│ │ │ ├── effects.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── rebuttals | |
│ │ │ ├── rebuttal | |
│ │ │ │ ├── actions.ts | |
│ │ │ │ ├── model.ts | |
│ │ │ │ └── reducer.ts | |
│ │ │ ├── actions.ts | |
│ │ │ └── reducer.ts | |
│ │ ├── search | |
│ │ │ └── reducer.ts | |
│ │ └── session | |
│ │ ├── actions.ts | |
│ │ ├── model.ts | |
│ │ └── reducer.ts | |
│ ├── counter | |
│ │ ├── component.ts | |
│ │ ├── module.ts | |
│ │ ├── page.ts | |
│ │ └── routing.ts | |
│ ├── debate | |
│ │ ├── claim | |
│ │ │ ├── component.css | |
│ │ │ ├── component.html | |
│ │ │ ├── component.spec.ts | |
│ │ │ └── component.ts | |
│ │ ├── module.ts | |
│ │ ├── page.css | |
│ │ ├── page.html | |
│ │ ├── page.ts | |
│ │ ├── routing.ts | |
│ │ └── rebuttal | |
│ │ ├── component.css | |
│ │ ├── component.html | |
│ │ ├── component.spec.ts | |
│ │ └── component.ts | |
│ ├── login | |
│ │ ├── login-form | |
│ │ │ ├── component.test.ts | |
│ │ │ └── component.ts | |
│ │ ├── login-modal | |
│ │ │ ├── component.test.ts | |
│ │ │ └── component.ts | |
│ │ └── module.ts | |
│ ├── notes | |
│ │ ├── add-button | |
│ │ │ ├── component.css | |
│ │ │ ├── component.html | |
│ │ │ └── component.ts | |
│ │ ├── note | |
│ │ │ ├── component.css | |
│ │ │ ├── component.html | |
│ │ │ ├── component.ts | |
│ │ ├── module.ts | |
│ │ ├── page.css | |
│ │ ├── page.html | |
│ │ ├── page.spec.ts | |
│ │ ├── page.ts | |
│ │ └── routing.ts | |
│ └── shared | |
│ ├── alert | |
│ │ ├── component.test.ts | |
│ │ └── component.ts | |
│ ├── assets | |
│ │ └── bernie-sanders-128.jpg | |
│ ├── button | |
│ │ ├── component.test.ts | |
│ │ └── component.ts | |
│ ├── container | |
│ │ ├── component.test.ts | |
│ │ └── component.ts | |
│ ├── draggable | |
│ │ └── directive.ts | |
│ ├── form | |
│ │ ├── component.ts | |
│ │ └── test.ts | |
│ ├── form-error | |
│ │ ├── component.ts | |
│ │ └── test.ts | |
│ ├── form-group | |
│ │ ├── component.ts | |
│ │ └── test.ts | |
│ ├── input | |
│ │ ├── component.ts | |
│ │ └── test.ts | |
│ ├── label | |
│ │ ├── component.ts | |
│ │ └── test.ts | |
│ ├── logo | |
│ │ ├── component.test.ts | |
│ │ ├── component.ts | |
│ │ └── component.css | |
│ ├── modal | |
│ │ ├── component.test.ts | |
│ │ ├── component.ts | |
│ │ └── component.css | |
│ ├── modal-content | |
│ │ ├── component.test.ts | |
│ │ └── component.ts | |
│ ├── shared.module.ts | |
│ ├── ui | |
│ │ └── module.ts | |
│ └── util.ts | |
├── config | |
│ ├── environment.prod.ts | |
│ └── environment.ts | |
├── favicon.ico | |
├── index.html | |
├── main.ts | |
├── polyfills.ts | |
├── styles.css | |
├── test.ts | |
├── tsconfig.json | |
└── typings.d.ts |
@roopkt 3. Business logic is hopefully on the backend ;)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @dancancro this is very nice. I have few questions