From f32adc7abc0cff4b2fc6ca782398b2b89d175845 Mon Sep 17 00:00:00 2001 From: kappa118 Date: Sat, 1 Mar 2025 19:59:06 -0500 Subject: [PATCH] fixed port in package.json --- frontend/package.json | 2 +- uwsgi.dev.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 43230511..38affdfe 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -30,7 +30,7 @@ "zustand": "^5.0.3" }, "scripts": { - "start": "react-scripts start", + "start": "PORT=9191 react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject", diff --git a/uwsgi.dev.ini b/uwsgi.dev.ini index 610f563b..8b3415ab 100644 --- a/uwsgi.dev.ini +++ b/uwsgi.dev.ini @@ -17,4 +17,4 @@ max-fd = 10000 attach-daemon = celery -A dispatcharr worker -l info attach-daemon = redis-server -attach-daemon = PORT=9191 cd /app/frontend && npm run start +attach-daemon = cd /app/frontend && npm run start