diff options
| author | Kamen Mladenov <kamen.d.mladenov@protonmail.com> | 2021-04-09 19:55:59 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-09 19:55:59 +0300 |
| commit | f849e37ccdd6fd48f83119a3b3b65cdd8b765dc3 (patch) | |
| tree | 83b88a773bb7dc053bb3aced35bce302264ec925 /docs/File-Structure.md | |
| parent | bcd88af53b1a920d728ec98b45daa9ac2e2c0917 (diff) | |
| parent | c13889759d70687de6833c505221c203f65fedb8 (diff) | |
| download | DevHive-Angular-main.tar DevHive-Angular-main.tar.gz DevHive-Angular-main.zip | |
Second Stage: Complete
Diffstat (limited to 'docs/File-Structure.md')
| -rw-r--r-- | docs/File-Structure.md | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/docs/File-Structure.md b/docs/File-Structure.md new file mode 100644 index 0000000..7f46c53 --- /dev/null +++ b/docs/File-Structure.md @@ -0,0 +1,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 +``` |
