From 59bcb29613f9b85162dcd676399e146d51b6fb08 Mon Sep 17 00:00:00 2001 From: gkb Date: Sun, 21 Dec 2025 17:46:34 -0500 Subject: [PATCH 1/2] Add disclaimer regarding Roblox API usage --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e1aa28c..9de5292 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ A FastAPI service for reuploading clothing assets to Roblox groups, used in *Filoxen Research Facilities*. This app fetches clothing from existing Roblox assets and reuploads them to a target group. +## Disclaimer + +This tool uses Roblox's APIs in a way that violates their Terms of Service. Roblox may moderate or ban accounts that use this. Use at your own risk. +This is beta software with potential issues. It's generally a good idea to not run it if you do not understand the source code. + ## Prerequisites - Python 3.13+ @@ -28,10 +33,6 @@ VALID_API_KEY= # API key for authorizing requests to this servic ROBLOSECURITY= # Your Roblox roblosecurity cookie (only needed for authed APIs) ``` -## ⚠️ Disclaimer - -This tool uses Roblox's APIs in a way that violates their Terms of Service. Roblox may moderate or ban accounts that use this. Use at your own risk. - ## Running Start the FastAPI server: From da6922db0c1fbc42da413ade7b06a72a3dea735a Mon Sep 17 00:00:00 2001 From: gkb Date: Sun, 21 Dec 2025 18:42:37 -0500 Subject: [PATCH 2/2] Fix FastAPI server command and host address Updated FastAPI server command and default host address. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9de5292..ca08412 100644 --- a/README.md +++ b/README.md @@ -38,10 +38,10 @@ ROBLOSECURITY= # Your Roblox roblosecurity cookie (only needed f Start the FastAPI server: ```bash -uv run fastapi dev src/main.py +uv run fastapi run src/main.py ``` -The server will run on `http://localhost:8000` by default. +The server will run on `http://0.0.0.0:8000` by default. ## Usage