A secure file sharing platform where users can upload and share files with others..
- Live App: https://trustshare-kappa.vercel.app/
- Frontend Repo: https://github.com/yssambare12/trustshare
- Backend Repo: https://github.com/yssambare12/trustshare-backend
- User authentication and registration
- Secure file upload
- File sharing with other users
- Auto-share functionality based on user detection
- Secure file download
- Modern and responsive UI
- React
- Vite
- Tailwind CSS
-
Clone the repository
git clone https://github.com/yssambare12/trustshare.git cd trustshare -
Install dependencies
npm install
-
Create a
.envfile in the root directory with:VITE_API_URL=your_backend_api_urlFor local development, use:
VITE_API_URL=http://localhost:5000 -
Start the development server
npm run dev
The app will run on
http://localhost:5173 -
Build for production
npm run build
Make sure the backend server is running. See the backend repository for setup instructions.