mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-11 18:03:30 +08:00
Create PROJECT_STRUCTURE.md
This commit is contained in:
parent
9c58a7e788
commit
03c2fbbe98
1 changed files with 133 additions and 0 deletions
133
PROJECT_STRUCTURE.md
Normal file
133
PROJECT_STRUCTURE.md
Normal file
|
@ -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
|
||||
|
Loading…
Reference in a new issue