diff --git a/PROJECT_STRUCTURE.md b/PROJECT_STRUCTURE.md new file mode 100644 index 000000000..95f0af987 --- /dev/null +++ b/PROJECT_STRUCTURE.md @@ -0,0 +1,133 @@ +### Project Structure +This is the project folder structure of this repository. See the bottom of this file for help. +``` +project +│ ... +│ +|---/.github +│ │ +│ │---/ISSUE_TEMPLATE +│ │ +│ \ ... +│ +│--- /functions +│ | +│ \ ... +| +|--- /src +| │---/js +| | |---/account +| | | | +| | | | ... +| | | +| | |---/elements +| | | | +| | | | ... +| | | +| | |---/popups +| | | | +| | | | ... +| | | +| | |--- /settings +| | | | +| | | | ... +| | | +| | |---/test +| | | | +| | | | ... +| | | +| | | ... +| | +| | ---/sass +| | | +| | | ... +| \ +| +|--- /static +| | +| |---/challenges +| | | +| | | ... +| | | +| | +| |---/css +| | | +| | | ... +| | +| |---/fonts +| | | +| | | ... +| | +| |---/funbox +| | | +| | | ... +| | +| |---/images +| | | +| | |---/favicon +| | | | +| | | | ... +| | | +| | |--/monkey +| | | | +| | | | ... +| | | +| | | ... +| | +| |---/js +| | | +| | | ... +| | +| |---/languages +| | | +| | | ... +| | +| |---/quotes +| | | +| | | ... +| | +| |---/sound +| | | +| | |---/click1 +| | | | +| | | | ... +| | | +| | |---/click2 +| | | | +| | | | ... +| | | +| | |---/click3 +| | | | +| | | | ... +| | |---/click4 +| | | | +| | | | ... +| | | | +| | | | ... +| | | +| | | ... +| | | +| | | +| |---/themes +| | | +| | | ... +| | +| |---/webfonts +| | | +| | | ... +| | +| | ... +| \ +| +| ... +| +\ + + +``` + +**help** +1. any spot you see the `...` anotation, it means there are files that are not in folder(s) in that director +2. when something ends with a `\` or backslash it menas that is the end of the directory +3. folders annotated as `|--- /folder` are the main folders and folders annotated as `|---/folder` as sub folders +