aboutsummaryrefslogtreecommitdiff
path: root/docs/File-Structure.md
blob: 7f46c53ac1aa357b367245f336f0e5ea6a72492f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
DevHive has a lot of files and it can be hard to really see the whole structure of everything from a first glance. In this document, all of the important/notable files and folders are represented in a tree structure.

```
└── DevHive.Angular
    ├── angular.json
    ├── karma.conf.js
    ├── package.json
    ├── package-lock.json
    └── src
        ├── app
        │   ├── app.component.html
        │   ├── app-constants.module.ts
        │   ├── app.module.ts
        │   ├── app-routing.module.ts
        │   ├── components
        │   │   ├── admin-panel-page
        │   │   ├── comment
        │   │   ├── comment-page
        │   │   ├── error-bar
        │   │   ├── feed
        │   │   ├── loading
        │   │   ├── login
        │   │   ├── not-found
        │   │   ├── post
        │   │   ├── post-attachment
        │   │   ├── post-page
        │   │   ├── profile
        │   │   ├── profile-settings
        │   │   ├── register
        │   │   └── success-bar
        │   └── services
        │       ├── cloudinary.service.ts
        │       ├── comment.service.ts
        │       ├── feed.service.ts
        │       ├── language.service.ts
        │       ├── post.service.ts
        │       ├── technology.service.ts
        │       ├── token.service.ts
        │       └── user.service.ts
        ├── assets
        │   └── images
        ├── favicon.ico
        ├── index.html
        ├── interfaces
        │   ├── api-error.ts
        │   ├── jwt-payload.ts
        │   └── user-credentials.ts
        ├── main.ts
        ├── models
        │   ├── comment.ts
        │   ├── identity
        │   │   ├── friend.ts
        │   │   ├── role.ts
        │   │   └── user.ts
        │   ├── language.ts
        │   ├── post-comment.ts
        │   ├── post.ts
        │   └── technology.ts
        └── styles.css
```