This is a full-stack web application built using Flask as the backend and React with Vite as the frontend. The application integrates various APIs and services for functionalities such as text-to-speech conversion, image generation, and more.
- Backend: Python Flask API for handling requests and integrating with external services like ElevenLabs and Azure OpenAI.
- Frontend: React Vite app for the user interface, including interactive components and audio playback.
- APIs and Integrations: Uses third-party APIs to generate audio, images, and other resources.
Make sure you have the following installed:
- Python 3.7+
- Node.js & npm (for React Vite)
- Flask and its dependencies
- Vite for the React frontend
Create a .env
file in the root directories for both backend and frontend. Configure the following environment variables:
FLEAK_API_KEY=your_fleak_api_key_here
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
AZURE_OPENAI_ENDPOINT=https://your-azure-openai-endpoint.api.azure.com
AZURE_OPENAI_KEY=your_azure_openai_key_here
These environment variables are used to securely connect to external services like ElevenLabs and Azure OpenAI.
For the React app, create a .env.local
file in the root of the Vite project:
VITE_API_BASE_URL=http://localhost:5000
This variable is used to specify the base URL for making API requests from the frontend to the Flask backend.
-
Clone the Repository:
git clone https://github.com/Shaik-mohd-huzaifa/HollyGenie.git cd HollyGenie/backend
-
Set up a virtual environment:
python -m venv venv
-
Activate the virtual environment:
- On Windows:
.\venv\Scripts\activate
- On macOS and Linux:
source venv/bin/activate
- On Windows:
-
Install dependencies:
pip install -r requirements.txt
-
Run the Flask application:
flask run
The backend will start on
http://localhost:5000
.
-
Navigate to the client directory:
cd ../client
-
Install dependencies:
npm install
-
Run the React Vite application:
npm run dev
The frontend will start on
http://localhost:3000
.
-
Start the backend server:
flask run
-
Start the frontend development server:
npm run dev
-
Open your browser and navigate to
http://localhost:3000
to access the application.
The Flask backend exposes several API endpoints, such as:
- Text-to-Speech Generation:
/api/tts
(POST request with aprompt
parameter) - Image Generation:
/api/image
(POST request with aprompt
parameter) - OpenAI Integration:
/api/openai
(POST request with aquery
parameter)
/your-flask-react-app
├── backend
│ ├── app.py
│ ├── requirements.txt
│ └── .env
├── client
│ ├── src
│ ├── public
│ ├── vite.config.js
│ └── .env.local
└── README.md
- backend/: Contains the Flask backend code.
- client/: Contains the React Vite frontend code.
- README.md: This file.
Ensure that the .env
files in both the backend and frontend are set up with the correct environment variables.
For deployment, consider using services like Heroku, AWS, or DigitalOcean. Make sure to configure environment variables for production.
The frontend can be deployed on platforms like Vercel, Netlify, or any static hosting provider.