IntervuAi is an AI-powered platform designed to help students practice for job interviews. Utilizing the OpenAI API, it simulates realistic interview scenarios, provides personalized feedback, and offers valuable insights to improve interview skills.
https://github.com/geniusuraj/IntervuAi.git
cd IntervuAi
# Frontend setup
cd frontend
npm install
npm start
# Backend setup
# Navigate to the backend directory
# Update MySQL credentials in `application.properties`
# Build and run the Spring Boot project
Add the following lines to your application.properties
file to configure the Spring Boot backend:
server.port = 5050
spring.datasource.driver=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/your-database-name
spring.datasource.username= Your Username
spring.datasource.password= Your Password
spring.jpa.hibernate.ddl-auto=update