Merge branch 'DrMxrcy-app/zipline'

This commit is contained in:
Nicolas Meienberger 2023-03-01 20:21:06 +01:00
commit a27b1e96e5
5 changed files with 108 additions and 0 deletions

View File

@ -73,6 +73,7 @@ This is the official repository for the Tipi App Store. It contains all the apps
- [Wireguard Easy](https://github.com/WeeJeWel/wg-easy) - WireGuard VPN + Web-based Admin UI
- [Your Spotify](https://github.com/Yooooomi/your_spotify) - Self hosted Spotify tracking dashboard
- [ZeroTier](https://github.com/zerotier/ZeroTierOne) - Easy to use zero configuration VPN.
- [Zipline](https://github.com/diced/zipline) - A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!
## How to sumbit an app

30
apps/zipline/config.json Normal file
View File

@ -0,0 +1,30 @@
{
"$schema": "../schema.json",
"name": "Zipline",
"port": 8139,
"available": true,
"exposable": true,
"id": "zipline",
"tipi_version": 1,
"version": "3.6.4",
"categories": ["media"],
"description": "A ShareX/file upload server that is easy to use, packed with features, and with an easy setup! ",
"short_desc": "A ShareX/file upload server that is easy to use, packed with features, and with an easy setup! ",
"author": "https://github.com/diced",
"source": "https://github.com/diced/zipline",
"website": "https://zipline.diced.tech/docs/config/",
"form_fields": [
{
"type": "random",
"label": "ZIPLINE_DB_PASSWORD",
"min": 32,
"env_variable": "ZIPLINE_DB_PASSWORD"
},
{
"type": "random",
"label": "ZIPLINE_CORE_SECRET",
"min": 32,
"env_variable": "ZIPLINE_CORE_SECRET"
}
]
}

View File

@ -0,0 +1,48 @@
version: '3.7'
services:
zipline:
container_name: zipline
image: ghcr.io/diced/zipline:3.6.4
ports:
- '${APP_PORT}:3000'
restart: unless-stopped
environment:
- CORE_RETURN_HTTPS=false
- CORE_SECRET=${ZIPLINE_CORE_SECRET}
- CORE_HOST=0.0.0.0
- CORE_PORT=3000
- CORE_DATABASE_URL=postgres://tipi:${ZIPLINE_DB_PASSWORD}@zipline-db/zipline
- CORE_LOGGER=true
volumes:
- '${APP_DATA_DIR}/data/uploads:/zipline/uploads'
- '${APP_DATA_DIR}/data/public:/zipline/public'
depends_on:
- 'zipline-db'
labels:
traefik.enable: ${APP_EXPOSED}
traefik.http.routers.zipline.rule: Host(`${APP_DOMAIN}`)
traefik.http.routers.zipline.entrypoints: websecure
traefik.http.routers.zipline.service: zipline
traefik.http.routers.zipline.tls.certresolver: myresolver
traefik.http.services.zipline.loadbalancer.server.port: 3000
networks:
- tipi_main_network
zipline-db:
container_name: zipline-db
image: postgres:14
restart: unless-stopped
environment:
- POSTGRES_USER=tipi
- POSTGRES_PASSWORD=${ZIPLINE_DB_PASSWORD}
- POSTGRES_DB=zipline
volumes:
- ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
networks:
- tipi_main_network
healthcheck:
test: ['CMD-SHELL', 'pg_isready -U postgres']
interval: 10s
timeout: 5s
retries: 5

View File

@ -0,0 +1,29 @@
A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!
## Default credentials
Username: administrator
Password: password
## Features
- Configurable
- Fast
- Built with Next.js & React
- Token protected uploading
- Image uploading
- Image compression
- Password Protected Uploads
- URL shortening
- Text uploading
- URL Formats (uuid, dates, random alphanumeric, original name, zws)
- Discord embeds (OG metadata)
- Gallery viewer, and multiple file format support
- Code highlighting
- Fully customizable Discord webhook notifications
- OAuth2 registration (Discord and GitHub)
- Two-Factor authentication with Google Authenticator, Authy, etc (totp services).
- User invites
- File Chunking (for large files)
- File deletion once it reaches a certain amount of views
- Easy setup instructions on [docs](https://zipl.vercel.app/) (One command install `docker-compose up -d`)

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB