Skip to content

Commit a3c77d5

Browse files
Update LIFECYCLE_SERVICE_URL in server configuration: Change default URL to point to the new service endpoint for improved connectivity.
1 parent 069748a commit a3c77d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const app = express();
77
app.use(cors({ origin: process.env.CORS_ORIGIN || "http://129.212.238.68:5173" }));
88
app.use(express.json({ limit: "512kb" }));
99

10-
const LIFECYCLE_SERVICE_URL = process.env.LIFECYCLE_SERVICE_URL || "http://localhost:3003";
10+
const LIFECYCLE_SERVICE_URL = process.env.LIFECYCLE_SERVICE_URL || "http://129.212.238.68:3003";
1111

1212
app.get("/health", (_req: Request, res: Response) => {
1313
res.json({ service: "security-admin-dashboard-backend", status: "active" });

0 commit comments

Comments
 (0)