Skip to content

Directory Structure

Matthew Cochran edited this page Oct 10, 2024 · 1 revision

Directory Structure**

Outline the project's directory structure with brief descriptions.

har-system/
├── src/
│   ├── classification/     # Classification algorithms and models
│   ├── config/             # Configuration files
│   ├── context/            # React context for state management
│   ├── database/           # Database interactions (TypeORM)
│   ├── ontology/           # Ontology definitions and population
│   ├── preprocessing/      # Data preprocessing and feature extraction
│   ├── reasoning/          # Probabilistic reasoning logic
│   ├── sensors/            # Sensor data collection and simulation
│   ├── services/           # Business logic and utility functions
│   ├── ui/                 # User interface components and pages
│   │   ├── components/     # Reusable UI components
│   │   ├── pages/          # Page-level components
│   │   ├── App.tsx         # Main application component
│   │   ├── index.css       # Global CSS styles
│   │   └── index.tsx       # Entry point for the React app
│   └── main.tsx            # Main application script
├── public/                 # Public assets (images, icons)
├── .gitignore
├── package.json
├── tsconfig.json
├── vite.config.ts
├── tailwind.config.js
├── postcss.config.js
├── README.md
└── LICENSE
Clone this wiki locally