This project aims to replicate the core functionalities of Google Drive, providing users with cloud storage and efficient file management capabilities. It was built using modern web technologies and tools for a responsive and user-friendly experience.
-
User Authentication: The project employs NextAuth.js for user authentication, ensuring secure access to individual user accounts.
-
File Upload and Management: Users can easily upload files and manage them, making it an ideal solution for storing documents, media files, and more.
-
Search Functionality: The project includes a powerful search feature that allows users to find files and folders quickly based on their names.
-
Folder Navigation: Users can organize their files into folders and navigate through their directory structure efficiently.
-
Responsive Design: The user interface is designed to be responsive, adapting to various screen sizes and devices.
Next.js | TypeScript | Tailwind CSS | React | Vercel | Firebase | NextAuth.js
To run the project locally, follow these steps:
- Clone the repository to your local machine.
- Install the required dependencies using
npm install
. - Create a Firebase project and configure it for this application.
- Set up authentication and real-time database in Firebase.
- Configure the environment variables in
.env
checkout .env.example - Start the development server using
npm run dev
.
The application should now be running on your local environment. You can access it at http://localhost:3000.
If you encounter any issues with the application or have feedback to provide, please feel free to open an issue on the project's GitHub repository.
- dev -> you can make your pull request to this branch
- main -> don't touch this branch this is the production branch
Contributions are welcome! Please open an issue or submit a pull request.
- Clone the repository and check out from
dev
branch. - Open your terminal & set the origin branch to
dev
if not set already. - Pull origin
git pull origin dev
- Create a new branch for the task you were assigned to, eg :
git checkout -b feat-csv-parser
- After making changes, do
git add .
- Commit your changes with a descriptive commit message :
git commit -m "your commit message"
. - To make sure there are no conflicts, run
git pull upstream dev
. - Push changes to your new branch, run
git push -u origin feat-csv-parser
. - Create a pull request to the
dev
branch notmain
. - Ensure to describe your pull request.
MIT
- Inspired by Google Drive.
- Next.js Documentation
- Firebase Documentation
- NextAuth.js Documentation
- Tailwind CSS Documentation
- Vercel JS Documentation