diff --git a/dev-reverse-proxy/package.json b/dev-reverse-proxy/package.json
index c567c3f12..51f675ae9 100644
--- a/dev-reverse-proxy/package.json
+++ b/dev-reverse-proxy/package.json
@@ -4,6 +4,7 @@
   "private": true,
   "license": "AGPL-3.0",
   "scripts": {
-    "start:dev": "caddy run || ./caddy run"
+    "start:dev": "caddy run || ./caddy run",
+    "start": "caddy run || ./caddy run"
   }
 }
diff --git a/package.json b/package.json
index 57b6451b9..a7aee91f5 100644
--- a/package.json
+++ b/package.json
@@ -13,6 +13,7 @@
     "lint": "dotenv -- turbo run lint",
     "format": "dotenv -- turbo run format",
     "start:dev": "dotenv -- turbo run start:dev",
+    "start": "dotenv -- turbo run start",
     "test:ci": "dotenv -- turbo run test:ci",
     "test": "dotenv -- turbo run test"
   },
diff --git a/turbo.json b/turbo.json
index ecfc2d9d4..f94a9e087 100644
--- a/turbo.json
+++ b/turbo.json
@@ -106,6 +106,11 @@
       ],
       "cache": false,
       "persistent": true
+    },
+
+    "start": {
+      "cache": false,
+      "persistent": true
     }
   }
 }