From 9a7aa6d0560727504684394724c2e50e42a1b0e2 Mon Sep 17 00:00:00 2001 From: UnrealApex <79121360+UnrealApex@users.noreply.github.com> Date: Sat, 1 May 2021 15:02:24 -0700 Subject: [PATCH] Added project folder structure --- CONTRIBUTING.md | 133 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9ce02dbc7..61404ac9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,138 @@ # Contributing +## Project Structure +``` +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 +| | | +| | | ... +| | +| | ... +| \ +| +| ... +| +\ + + +``` + +**hints:** +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 + + ## Technologies - NodeJS v10