feat: add proxitok app

This commit is contained in:
Nicolas Meienberger 2022-08-18 08:31:59 +02:00
parent ac9bb27d63
commit c303db6a47
4 changed files with 65 additions and 0 deletions

14
apps/proxitok/config.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "ProxiTok",
"available": true,
"port": 8118,
"id": "proxitok",
"categories": ["social"],
"description": "",
"tipi_version": 1,
"version": "1.0.0",
"short_desc": "Open source alternative frontend for TikTok made using PHP ",
"author": "pablouser1",
"source": "https://github.com/pablouser1/ProxiTok",
"form_fields": []
}

View File

@ -0,0 +1,40 @@
services:
proxitok:
container_name: proxitok
image: ghcr.io/pablouser1/proxitok:master
restart: unless-stopped
ports:
- "${APP_PORT}:80"
environment:
- "LATTE_CACHE=/cache"
- "API_CACHE=redis"
- "REDIS_HOST=proxitok-redis"
- "REDIS_PORT=6379"
- "API_SIGNER_URL=http://proxitok-signer:8080/signature"
volumes:
- "proxitok-cache:/cache"
depends_on:
- proxitok-redis
- proxitok-signer
networks:
- tipi_main_network
proxitok-redis:
container_name: proxitok-redis
image: docker.io/redis:7-alpine
restart: unless-stopped
command: redis-server --save 60 1 --loglevel warning
networks:
- tipi_main_network
proxitok-signer:
container_name: proxitok-signer
image: ghcr.io/pablouser1/signtok:master
networks:
- tipi_main_network
volumes:
proxitok-cache:

View File

@ -0,0 +1,11 @@
# ProxiTok
Use Tiktok with an alternative frontend, inspired by Nitter.
## Features
* Privacy: All requests made to TikTok are server-side, so you will never connect to their servers
* See user's feed
* See trending and discovery tab
* See tags
* See video by id
* Themes
* RSS Feed for user, trending and tag (just add /rss to the url)

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB