diff --git a/README.md b/README.md index 196bdf2c..8f1c3bd1 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,7 @@ This is the official repository for the Tipi App Store. It contains all the apps - [Openbooks](https://github.com/evan-buss/openbooks) - Search and Download eBooks - [Overseerr](https://github.com/sct/overseerr) - Request management and media discovery tool for the Plex ecosystem - [Owncloud](https://github.com/owncloud/core) - A personal cloud which runs on your own server. +- [PairDrop](https://github.com/schlagmichdoch/PairDrop) - Local file sharing in your browser. Inspired by Apple's AirDrop. - [Peppermint](https://github.com/Peppermint-Lab/peppermint) - An open source ticket management & help desk solution. - [Photoprism](https://github.com/photoprism/photoprism) - AI-Powered Photos App for the Decentralized Web. We are on a mission to protect your freedom and privacy. - [Pihole](https://github.com/pi-hole/pi-hole) - A black hole for Internet advertisements diff --git a/apps/pairdrop/config.json b/apps/pairdrop/config.json new file mode 100644 index 00000000..7aab4144 --- /dev/null +++ b/apps/pairdrop/config.json @@ -0,0 +1,18 @@ +{ + "$schema": "../schema.json", + "name": "PairDrop", + "port": 8182, + "available": true, + "exposable": true, + "force_expose": true, + "id": "pairdrop", + "tipi_version": 1, + "version": "1.6.2", + "categories": ["media", "data", "utilities"], + "description": "Local file sharing in your browser. Inspired by Apple's AirDrop", + "short_desc": "Local file sharing in your browser. Inspired by Apple's AirDrop", + "author": "schlagmichdoch", + "source": "https://github.com/schlagmichdoch/PairDrop", + "website": "https://pairdrop.net/", + "form_fields": [] +} \ No newline at end of file diff --git a/apps/pairdrop/docker-compose.yml b/apps/pairdrop/docker-compose.yml new file mode 100644 index 00000000..b82a790c --- /dev/null +++ b/apps/pairdrop/docker-compose.yml @@ -0,0 +1,23 @@ +version: "3" + +services: + pairdrop: + image: lscr.io/linuxserver/pairdrop:1.6.2 + container_name: pairdrop + environment: + - PUID=1000 + - PGID=1000 + - TZ=${TZ} + - RATE_LIMIT=false] + - WS_FALLBACK=false + ports: + - ${APP_PORT}:3000 + networks: + - tipi_main_network + labels: + traefik.enable: ${APP_EXPOSED} + traefik.http.routers.pairdrop.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.pairdrop.entrypoints: websecure + traefik.http.routers.pairdrop.service: pairdrop + traefik.http.routers.pairdrop.tls.certresolver: myresolver + traefik.http.services.pairdrop.loadbalancer.server.port: 3000 diff --git a/apps/pairdrop/metadata/description.md b/apps/pairdrop/metadata/description.md new file mode 100644 index 00000000..ec60b35c --- /dev/null +++ b/apps/pairdrop/metadata/description.md @@ -0,0 +1,25 @@ +# PairDrop + +Local file sharing in your browser. Inspired by Apple's AirDrop. +[**Explore »**](https://pairdrop.net) + +[Report Bug](https://github.com/schlagmichdoch/PairDrop/issues) · [Request Feature](https://github.com/schlagmichdoch/PairDrop/issues) + +## Features + +[PairDrop](https://pairdrop.net) is a sublime alternative to AirDrop that works on all platforms. + +Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices. As it is web based, it runs on all devices. + +You want to quickly send a file from your phone to your laptop? +You want to share photos in original quality with friends that use a mixture of Android and iOS? +You want to share private files peer to peer between Linux systems? +AirDrop is unreliable again? +_Send it with PairDrop!_ + +Developed based on [Snapdrop](https://github.com/RobinLinus/snapdrop) + + +## Screenshots + +[![Pairdrop Preview](https://github.com/schlagmichdoch/PairDrop/raw/master/docs/pairdrop_screenshot_mobile.gif)](https://github.com/schlagmichdoch/PairDrop/blob/master/docs/pairdrop_screenshot_mobile.gif) \ No newline at end of file diff --git a/apps/pairdrop/metadata/logo.jpg b/apps/pairdrop/metadata/logo.jpg new file mode 100644 index 00000000..e0872b04 Binary files /dev/null and b/apps/pairdrop/metadata/logo.jpg differ