forked from mcochranca/HAR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README-HAR System Directory Structure-1.eraserdiagram
51 lines (43 loc) · 1.57 KB
/
README-HAR System Directory Structure-1.eraserdiagram
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
flowchart-diagram
title HAR System Directory Structure
// Define the main directories and files
Start [shape: oval, icon: folder] > har-system [icon: folder]
har-system > src [icon: folder]
har-system > public [icon: folder]
har-system > .gitignore [icon: file-text]
har-system > package.json [icon: file-text]
har-system > tsconfig.json [icon: file-text]
har-system > vite.config.ts [icon: file-text]
har-system > tailwind.config.js [icon: file-text]
har-system > postcss.config.js [icon: file-text]
har-system > README.md [icon: file-text]
har-system > LICENSE [icon: file-text]
// Define the src directory structure
src > classification [icon: folder]
src > config [icon: folder]
src > context [icon: folder]
src > database [icon: folder]
src > ontology [icon: folder]
src > preprocessing [icon: folder]
src > reasoning [icon: folder]
src > sensors [icon: folder]
src > services [icon: folder]
src > ui [icon: folder]
src > main.tsx [icon: file-text]
// Define the config directory structure
config > config.example.ts [icon: file-text]
config > config.ts [icon: file-text]
// Define the ui directory structure
ui > components [icon: folder]
ui > pages [icon: folder]
ui > App.tsx [icon: file-text]
ui > index.css [icon: file-text]
ui > index.tsx [icon: file-text]
// Define the pages directory structure
pages > AdminDashboard.tsx [icon: file-text]
pages > UserDashboard.tsx [icon: file-text]
pages > AxiomEditor.tsx [icon: file-text]
pages > LoginPage.tsx [icon: file-text]
pages > NotFoundPage.tsx [icon: file-text]
// Define the public directory structure
public > index.html [icon: file-text]