Profile

ps4discord

← Back to repositories | View on GitHub

Web UI for Discord accessable via PS3/PS4.

JavaScript 1 0 Updated: 2/22/2026

README

PS4 Discord WebUI

Simple Python FastAPI web UI to browse guilds/channels and send messages using a Discord token placed in config.json.

Setup

  1. Create a virtual environment and install requirements:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
  1. Copy config.json.example to config.json and add your Discord token:
{
  "token": "YOUR_DISCORD_TOKEN"
}
  1. Run the app:
uvicorn main:app --reload --host 0.0.0.0 --port 8000
  1. Open http://localhost:8000 on your ps4. (change localhost to your local ip.)

Notes

Root