https://github.com/jojocoder28/adaptive-ai-driven-smart-environment-for-car
Adaptive AI-Driven Smart Environment
https://github.com/jojocoder28/adaptive-ai-driven-smart-environment-for-car
Last synced: over 1 year ago
JSON representation
Adaptive AI-Driven Smart Environment
- Host: GitHub
- URL: https://github.com/jojocoder28/adaptive-ai-driven-smart-environment-for-car
- Owner: jojocoder28
- Created: 2024-11-08T05:26:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-17T15:22:04.000Z (over 1 year ago)
- Last Synced: 2025-01-22T09:30:34.786Z (over 1 year ago)
- Language: JavaScript
- Size: 18.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Prototype Video - https://youtu.be/B8KRT6L8Uzs
# AADS - Adaptive AI-Driven Smart Environment
This repository contains both the frontend and backend code for the project. Follow the steps below to set up and run the application.
---
## Prerequisites
Ensure the following are installed on your system before starting:
- [Node.js](https://nodejs.org/) (with npm)
- [Python 3.8+](https://www.python.org/)
- [FastAPI](https://fastapi.tiangolo.com/)
- [Uvicorn](https://www.uvicorn.org/)
---
## Getting Started
### 1. Clone the Repository
```bash
https://github.com/jojocoder28/Adaptive-AI-Driven-Smart-Environment-for-Car
cd Adaptive-AI-Driven-Smart-Environment-for-Car
```
2. Setting up the Frontend
Navigate to the Frontend directory:
```bash
cd Frontend
```
Install dependencies:
```bash
npm install
```
Start the development server:
```bash
npm run dev
```
The frontend application will be available at:
```arduino
http://localhost:1573
```
3. Setting up the Backend
Navigate to the Backend directory:
```bash
cd Backend
```
Install the required Python packages:
```bash
pip install -r requirements.txt
```
Start the FastAPI backend server:
```bash
uvicorn app:app --host 127.0.0.1 --port 8000
```
The backend API will be accessible at:
```arduino
http://127.0.0.1:8000
```
Directory Structure
```bash
your-repo-name/
├── Frontend/ # React/Vue/Other frontend framework code
├── Backend/ # FastAPI backend code
├── README.md # Project setup and instructions
└── requirements.txt # Python dependencies for the backend
```