{"id":23263391,"url":"https://github.com/rohitroy-github/vite-ipfs-drive","last_synced_at":"2026-02-16T11:32:54.644Z","repository":{"id":211152297,"uuid":"728349155","full_name":"rohitroy-github/vite-ipfs-drive","owner":"rohitroy-github","description":"A decentralized google drive clone designed using ViteJS, Tailwind CSS and powered by IPFS (Pinata) \u0026 Blockchain.","archived":false,"fork":false,"pushed_at":"2025-04-04T08:24:01.000Z","size":6841,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T09:28:29.720Z","etag":null,"topics":["alchemy","blockchain","context-api","dapp","ethersjs","ipfs","pinata","react","react-toastify","smart-contracts","solidity","tailwind-css","vitejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rohitroy-github.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-06T18:47:48.000Z","updated_at":"2025-04-04T08:25:09.000Z","dependencies_parsed_at":"2024-04-24T20:34:21.201Z","dependency_job_id":"92e13048-5657-4078-8db0-1aeeae0c8931","html_url":"https://github.com/rohitroy-github/vite-ipfs-drive","commit_stats":null,"previous_names":["rohitroy-github/vite-ipfs-drive-dapp","rohitroy-github/vite-ipfs-drive"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rohitroy-github/vite-ipfs-drive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitroy-github%2Fvite-ipfs-drive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitroy-github%2Fvite-ipfs-drive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitroy-github%2Fvite-ipfs-drive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitroy-github%2Fvite-ipfs-drive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rohitroy-github","download_url":"https://codeload.github.com/rohitroy-github/vite-ipfs-drive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohitroy-github%2Fvite-ipfs-drive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29506768,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alchemy","blockchain","context-api","dapp","ethersjs","ipfs","pinata","react","react-toastify","smart-contracts","solidity","tailwind-css","vitejs"],"created_at":"2024-12-19T14:17:53.468Z","updated_at":"2026-02-16T11:32:54.629Z","avatar_url":"https://github.com/rohitroy-github.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IPFS Drive 1.0 (EVM-Based)\n\nIPFS Drive 1.0 is a **decentralized alternative to Google Drive**, designed for **secure photo storage** using **Blockchain \u0026 IPFS**.\n\nCurrently, the app supports testing on **Localhost (Hardhat)** and the **Ethereum Sepolia Testnet** via an Alchemy endpoint.\n\n---\n\n## Snapshots\n\n| ![image](./project-assets/screenshot-1.png) | ![image](./project-assets/screenshot-2.png) |\n| ------------------------------------------- | ------------------------------------------- |\n\n---\n\n## Features\n\n- **Upload and store pictures securely**\n- **Preview images directly within the app**\n- **Decentralized storage powered by IPFS**\n- **Share drive access using wallet addresses**\n\n---\n\n## Tech Stack\n\n### Frontend:\n\n- **Vite JS** - Fast and modern frontend tooling\n- **Tailwind CSS** - Utility-first styling for a sleek UI\n\n### Backend:\n\n- **Node.js** - Server-side runtime\n- **Hardhat** - Ethereum development framework\n- **Metamask Wallet** - User authentication and transactions\n- **Ethers.js** - Blockchain interaction library\n- **Alchemy** - Web3 infrastructure provider\n- [**Pinata IPFS**](https://www.pinata.cloud/) - IPFS storage solution\n\n---\n\n## Deployed Networks\n\n- ✅ **Ethereum Sepolia Testnet**\n- ✅ **Hardhat Local Testnet**\n\n---\n\n## Setup \u0026 Testing Guide\n\n### Setting Up Environment Variables\n\n- Create a `.env` file in the `blockchain-hardhat` directory, using `.env.example` as a reference.\n- Create a `.env` file in the `frontend-vite` directory, using `.env.example` as a reference.\n\n### Backend Setup\n\n#### Terminal 1 - Start Hardhat Node:\n\n```sh\ncd blockchain-hardhat\nnpx hardhat node\n```\n\n#### Terminal 2 - Deploy Contracts:\n\n```sh\ncd blockchain-hardhat\n# OPTIONAL: Run tests\nnpx hardhat test\n# Deploy contract to Localhost\nnpx hardhat run scripts/deploy[IPFSDriveContract_Main].js --network localhost\n# OPTIONAL: Deploy contract to Sepolia\nnpx hardhat run scripts/deploy[IPFSDriveContract_Main].js --network sepolia\n```\n\n- Update **`backend-config.json`** inside `/frontend-vite` with the **latest contract address** under the **\"31337\"** key, fetched from Terminal 2.\n\n### Frontend Setup\n\n#### Terminal 1 - Start Frontend:\n\n```sh\ncd frontend-vite\nnpm run dev\n```\n\n---\n\n## Contributions \u0026 Feedback\n\nThe project is functional but open to enhancements. Feel free to suggest improvements or modifications.\n\nIf you found this useful, don't forget to leave a ⭐! 😊\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohitroy-github%2Fvite-ipfs-drive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frohitroy-github%2Fvite-ipfs-drive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohitroy-github%2Fvite-ipfs-drive/lists"}