Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Personalized Workout Recommendation System #937

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Personalized Workout Recommendation system

## Table of Contents

- [Introduction](#introduction)

- [Features](#features)
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Technologies Used](#technologies-used)

## Features

- **Personalized Workout Plans**: Create customized workout plans tailored to individual fitness goals, preferences, and available time.

- **AI-Generated Recommendations**: Utilize AI-powered algorithms to receive workout recommendations that adapt and evolve as you progress.

- **Responsive Design**: Enjoy a seamless experience across devices, including desktops, tablets, and mobile phones.

- **Integration with OpenAI**: Access the OpenAI API to enhance workout recommendations and guidance.

## Getting Started

Follow these steps to set up and run the AI-Powered Workout Application locally.

### Prerequisites

Ensure you have the following prerequisites installed on your system:

- [Node.js](https://nodejs.org/)
- [npm](https://www.npmjs.com/) or [Yarn](https://yarnpkg.com/)

### Installation

1. Clone the repository:

```bash
git clone https://github.com/manishtmtmt/ai-powered-workout-plan.git
```

2. Navigate to the project directory:

```bash
cd ai-powered-workout-plan
```

3. Install dependencies:

```bash
npm install
```

4. Start the server:

```bash
npm run dev
```

## Technologies Used

The AI-Powered Workout Application is built with the following technologies:

- React
- Redux Toolkit
- React Router DOM
- OpenAI API
- Material UI
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personalised Workout Recommendation System </title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading
Loading