From 03c2fbbe98a4c1cc1cd026ab69cd0fa8e64a7ec2 Mon Sep 17 00:00:00 2001 From: UnrealApex <79121360+UnrealApex@users.noreply.github.com> Date: Sat, 1 May 2021 15:03:57 -0700 Subject: [PATCH] Create PROJECT_STRUCTURE.md --- PROJECT_STRUCTURE.md | 133 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 PROJECT_STRUCTURE.md 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 +