feat: add proxitok app
This commit is contained in:
parent
ac9bb27d63
commit
c303db6a47
14
apps/proxitok/config.json
Normal file
14
apps/proxitok/config.json
Normal 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": []
|
||||
}
|
40
apps/proxitok/docker-compose.yml
Normal file
40
apps/proxitok/docker-compose.yml
Normal 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:
|
11
apps/proxitok/metadata/description.md
Normal file
11
apps/proxitok/metadata/description.md
Normal 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)
|
BIN
apps/proxitok/metadata/logo.jpg
Normal file
BIN
apps/proxitok/metadata/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Loading…
Reference in New Issue
Block a user