From 40cd17a6542ffdb8489b90116ebc82727074defe Mon Sep 17 00:00:00 2001 From: Danny Pham Date: Thu, 20 Feb 2020 20:41:23 -0800 Subject: [PATCH] Update PROD endpoint to new AWS server. --- src/App/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/App.js b/src/App/App.js index 6ea7b4c..1bb3a80 100644 --- a/src/App/App.js +++ b/src/App/App.js @@ -10,7 +10,7 @@ import './App.css'; // Backend servers to execute code. const DEV_POST_URL = 'http://localhost:5000/coderpad/execute' -const PROD_POST_URL = 'https://dev.dannyhp.com:8443/execute' +const PROD_POST_URL = 'https://aws.dannyhp.com/coderpad/execute' const POST_URL = PROD_POST_URL // Default settings on page loadup.