Web UI for Discord accessable via PS3/PS4.
Simple Python FastAPI web UI to browse guilds/channels and send messages using a Discord token placed in config.json.
Setup
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
config.json.example to config.json and add your Discord token:{
"token": "YOUR_DISCORD_TOKEN"
}
uvicorn main:app --reload --host 0.0.0.0 --port 8000
Notes
config.json.