Spaces:
Sleeping
Sleeping
File size: 1,996 Bytes
e1e4b5e fecb290 e1e4b5e 51334da |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
---
title: File Sharing System
emoji: 🔥
colorFrom: pink
colorTo: indigo
sdk: gradio
sdk_version: 4.40.0
app_file: app.py
pinned: false
license: apache-2.0
short_description: Share files and notes instantly.
---
# File Storing and Sharing System
This project is a file storing and sharing system built using Gradio for the front-end interface and MongoDB for the back-end database. The system allows users to upload files, which are then stored and managed within a specified directory. URLs for accessing these files are generated and stored in a MongoDB collection, making it easy to share and access the uploaded files.
## Key Components
### Gradio
Gradio is used to create the front-end interface, allowing users to interact with the file upload system through a simple and intuitive GUI.
### MongoDB
MongoDB is used to store metadata about the uploaded files, specifically the URLs where these files can be accessed. This project connects to a MongoDB instance using credentials stored in environment variables for security.
## Project Structure
### Environment Variables
- `SECRET_KEY`: Authetication Key to access data.
- `MONGO_USERNAME`: MongoDB username.
- `MONGO_PASSWORD`: MongoDB password.
- `REST_URI`: MongoDB URI for connecting to the database.
## How to Run
1. **Set Environment Variables**: Make sure to set the `SECRET_KEY`, `MONGO_USERNAME`, `MONGO_PASSWORD`, and `REST_URI` environment variables with your MongoDB credentials and URI.
2. **Install Dependencies**: Ensure you have `gradio`, `pymongo`, and other necessary packages installed.
3. **Run the Application**: Execute the script to start the Gradio interface and handle file uploads.
```bash
python your_script.py
```
## Conclusion
This project provides a simple yet effective solution for file storing and sharing. By leveraging Gradio for the front-end and MongoDB for the back-end, it ensures a seamless experience for users to upload and manage their files with easy access through generated URLs. |