A lightweight privacy-friendly alternative front-end for Facebook.
Inspired by projects like Nitter, Invidious and others
- No ADS
- No trackers
- No JavaScript required
- No account required
- Lightweight
- Free and open-source
- RSS feeds
Docker image avaliable at: https://hub.docker.com/r/c4ffe14e/phice
or build your image with:
docker buildx build -t phice:latest .
Create a config file:
cp config.example.toml config.toml
Run it with docker:
docker run --rm -v "./config.toml:/src/phice/config.toml:ro" -p "5000:5000" -d phice:latest
or with compose:
docker-compose up -d
- python >= 3.13
- uv
Fetch project dependencies:
uv sync
Create a config file:
cp config.example.toml config.toml
And start your server:
uv run gunicorn -b 0.0.0.0:5000 -w 4 "app:app"