AudioBook
AudioBook is a project that allows users to listen to audio files uploaded to Google Drive through a web page.
Project Overview
The AudioBook project aims to provide a platform for users to upload their audio files to Google Drive and access them through a web interface. The project is currently in the initial stages of development, with the focus on building the frontend components.
Technology Stack
The following technologies are being used in the development of AudioBook:
React: The frontend of the application is being built using React, a popular JavaScript library for building user interfaces.
Vite: Vite is a fast build tool for modern web development. It is used to set up the React project and handle the development server.
Backend (expected): The backend of the application is expected to be developed using Spring Boot, a Java-based framework for building robust and scalable web applications.
MongoDB: The project utilizes MongoDB, a NoSQL database, to store and manage audio file metadata.
Google Drive: Google Drive serves as the storage solution for the audio files uploaded by users.
Development Setup
To set up the development environment for AudioBook, follow these steps:
Clone the repository from GitHub: git clone https://github.com/your-username/audiobook.git\ Install Node.js: Ensure that you have Node.js installed on your system.
Install project dependencies: Run npm install to install the required dependencies.
Configure the backend: Once the backend is developed using Spring Boot, follow the instructions provided in the backend repository to set it up.
Set up Google Drive API: Visit the Google Cloud Platform Console and create a project. Enable the Google Drive API and obtain the necessary credentials. Update the credentials in the project's configuration file.
Start the development server: Run npm run dev to start the Vite development server.
Access the application by visiting http://localhost:3000 in your web browser.
Contribution
Contributions to AudioBook are welcome! If you would like to contribute to the project, please follow these steps:
Fork the repository on GitHub. Create a new branch with a descriptive name: git checkout -b feature/my-feature. Make your desired changes to the codebase. Commit your changes: git commit -am 'Add new feature'. Push the branch to your forked repository: git push origin feature/my-feature. Submit a pull request on the main repository.