A lightweight privacy-friendly alternative front-end for Facebook
- Python 61.9%
- Jinja 24.8%
- CSS 13.1%
- Dockerfile 0.2%
Phice
A lightweight privacy-friendly alternative front-end for Facebook.
Inspired by projects like Nitter, Invidious and others
Screenshot
Features
- Free and open-source
- Lightweight
- No ADS
- No JavaScript required
- No account required
- No trackers
- RSS feeds
Installation
Docker
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 (optional):
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
Manual
Dependencies:
- python >= 3.13
- uv
Fetch project dependencies:
uv sync
Create a config file (optional):
cp config.example.toml config.toml
And start your server:
uv run gunicorn -b 0.0.0.0:5000 -w 4 "app:app"