Skip to content

Commit 4038206

Browse files
authored
Updated PROD endpoint. (#14)
1 parent 76ac9ce commit 4038206

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import './App.css';
99

1010
// Backend endpoint to save data.
1111
const DEV_POST_URL = 'http://localhost:5000/pastebin/save'
12-
const PROD_POST_URL = 'https://dev.dannyhp.com:8443/pastebin_save'
12+
const PROD_POST_URL = 'https://aws.dannyhp.com/pastebin/save'
1313
const POST_URL = PROD_POST_URL
1414

1515
// Backend endpoint to load data.
1616
const DEV_GET_URL = 'http://localhost:5000/pastebin/load/%s'
17-
const PROD_GET_URL= 'https://dev.dannyhp.com:8443/pastebin_load/%s'
17+
const PROD_GET_URL= 'https://aws.dannyhp.com/pastebin/load/%s'
1818
const GET_URL = PROD_GET_URL
1919

2020
class App extends Component {

0 commit comments

Comments
 (0)