diff --git a/apps/proxitok/config.json b/apps/proxitok/config.json new file mode 100644 index 00000000..d9eb07b2 --- /dev/null +++ b/apps/proxitok/config.json @@ -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": [] +} diff --git a/apps/proxitok/docker-compose.yml b/apps/proxitok/docker-compose.yml new file mode 100644 index 00000000..4a2451ac --- /dev/null +++ b/apps/proxitok/docker-compose.yml @@ -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: \ No newline at end of file diff --git a/apps/proxitok/metadata/description.md b/apps/proxitok/metadata/description.md new file mode 100644 index 00000000..9c5dff1e --- /dev/null +++ b/apps/proxitok/metadata/description.md @@ -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) \ No newline at end of file diff --git a/apps/proxitok/metadata/logo.jpg b/apps/proxitok/metadata/logo.jpg new file mode 100644 index 00000000..e966ea38 Binary files /dev/null and b/apps/proxitok/metadata/logo.jpg differ