save code

This commit is contained in:
Your Name
2026-03-12 02:40:26 +00:00
parent e5aa87bf1c
commit a027ad12aa
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ STATIC_FOLDER = os.path.join(APP_ROOT, 'static')
app = Flask(__name__, static_folder=STATIC_FOLDER, static_url_path='/static')
CORS(app)
CHANGE_APP_BASE_URL = "http://127.0.0.1:28888"
CHANGE_APP_BASE_URL = "http://127.0.0.1:28889"
logging.basicConfig(
level=logging.INFO,
@@ -254,5 +254,5 @@ def do_change_cloth():
if __name__ == '__main__':
log_message(f"Starting change_cloth_proxy service on port 5000, forwarding to {CHANGE_APP_BASE_URL}")
app.run(host="0.0.0.0", port=5000, debug=True, threaded=True)
log_message(f"Starting change_cloth_proxy service on port 28888, forwarding to {CHANGE_APP_BASE_URL}")
app.run(host="0.0.0.0", port=28888, debug=False, threaded=True)