An open API service indexing awesome lists of open source software.

https://github.com/gnhen/skydrop

Open Source, Locally Hosted AirDrop server for All Devices
https://github.com/gnhen/skydrop

airdrop apple python self-hosted windows

Last synced: 5 months ago
JSON representation

Open Source, Locally Hosted AirDrop server for All Devices

Awesome Lists containing this project

README

          

# SkyDrop



# What is this?

SkyDrop is an open source, lightweight, cross-platform AirDrop alternative server.

It receives text and files via HTTP requests and displays them on a web interface for easy access across devices. Perfect for sharing content between iOS devices, Android, and desktop computers.

**Key Features:**
- Secure authentication with CSRF protection and rate limiting
- Docker support for easy deployment
- Modern Python backend with Flask
- Clean, responsive web interface
- Keeps 10 most recent items (text and files)

# Watch the Demo Video on YouTube





---

# Installation

## Option 1: Docker

```bash
git clone https://github.com/gnhen/SkyDrop
cd SkyDrop
docker compose up -d

# Default login: admin / admin

# Change credentials immediately for production
# Edit .env file, then restart:
docker compose restart

# View logs
docker compose logs -f
```

Access at `http://localhost:5000`

## Option 2: Local Python Installation

```bash
# Clone and navigate to directory
git clone https://github.com/gnhen/SkyDrop
cd SkyDrop

# Run the startup script (Linux/Mac)
./start.sh

# Or manually:
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt

# Optional: Create local environment overrides
cp .env .env.local
# Edit .env.local with your custom settings

python receiver.py
```

**Note:** The default `.env` file is included for easy setup. For production, create `.env.local` with secure credentials.

---

# 📋 Setup Guide

## Visit the [SETUP.md](https://github.com/gnhen/SkyDrop/) for detailed instructions