file-storage

Secure File Storage Service

A secure web application for storing and sharing files with customizable url.

Preview

File Storage Interface File Storage interface showing upload form and file management

Fun fact: This preview image is actually being served by this tool! It was uploaded and made public using the file storage service itself. πŸŽ‰

Features

URL Structure

# Clean and intuitive URLs:
http://your-domain.com/file/my-resume        # File info page
http://your-domain.com/download/my-resume    # Direct download
http://your-domain.com/preview/my-resume     # Browser preview

# Version control adds suffix automatically:
http://your-domain.com/file/my-resume-v1
http://your-domain.com/download/my-resume-v1
http://your-domain.com/preview/my-resume-v1

When uploading a file, you can:

File Access Levels

User Interface Features

Technical Stack

Installation

Method 1: Traditional Setup

  1. Clone the repository
  2. Create a .env file with your credentials:
    ADMIN_USERNAME=your_username
    ADMIN_PASSWORD=your_password
    UPLOAD_DIR=/path/to/custom/uploads  # Optional - defaults to "uploads" folder
       
    # Database Configuration (Optional)
    DB_TYPE=sqlite                      # or 'postgres'
    DATABASE_PATH=/path/to/data         # SQLite only - defaults to "./data"
    DB_NAME=file-storage               # defaults to "file-storage"
       
    # PostgreSQL Configuration (if using postgres)
    DB_HOST=localhost
    DB_PORT=5432
    DB_USER=postgres
    DB_PASSWORD=your_password
    
  3. Install dependencies: pip install -r requirements.txt
  4. Initialize database:
    # Create initial migration
    alembic revision --autogenerate -m "Initial schema"
       
    # Apply migration
    alembic upgrade head
    
  5. Run the application: uvicorn main:app --reload

Method 2: Docker Setup

  1. Clone the repository
  2. Create a .env file with your credentials (same as above)
  3. Build and run with Docker Compose:
    docker-compose up -d --build
    

Docker-specific commands:

The Docker setup includes:

Security Features

Usage