c4ffe14e/phice
4
25
Fork
You've already forked phice
1
A lightweight privacy-friendly alternative front-end for Facebook
  • Python 61.9%
  • Jinja 24.8%
  • CSS 13.1%
  • Dockerfile 0.2%
Caffeine 04da5de3a0
Merge pull request #5 from Qeya/fix-negative-timezone
fix: negative timezone handling and format_time typo
2026年06月05日 15:39:49 +02:00
scripts fix posts with one photo have low resolution 2025年10月31日 19:02:10 +02:00
src fix: negative timezone handling and format_time typo 2026年06月05日 11:22:39 +05:30
.gitignore !change configuration file to toml 2025年08月06日 14:17:29 +02:00
app.py !change configuration file to toml 2025年08月06日 14:17:29 +02:00
config.example.toml !another configuration breaking change 2025年08月09日 16:47:49 +02:00
docker-compose.yaml !change configuration file to toml 2025年08月06日 14:17:29 +02:00
Dockerfile add gunicorn to dependencies 2025年07月11日 15:58:38 +02:00
dprint.json rework posts/comments 2026年01月18日 11:40:15 +02:00
LICENSE first commit 2025年06月14日 15:40:44 +02:00
pyproject.toml make links clickable again 2026年01月21日 15:30:57 +02:00
README.md note that the config file is optional 2025年12月18日 00:47:39 +02:00
screenshot.png first commit 2025年06月14日 15:40:44 +02:00

Phice

A lightweight privacy-friendly alternative front-end for Facebook.

Inspired by projects like Nitter, Invidious and others

Screenshot

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"

Mirrors

Codeberg

GitHub

GitLab