Skip to content

Commit c8f55e6

Browse files
committed
use port 8310 to load deployment data
1 parent 5babd42 commit c8f55e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/scripts/mock_mentor_profiles/load_mock_profiles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from pathlib import Path
55

66
# Change the endpoint if it will be used for production
7-
BASE_URL = "http://localhost/api/mentorship"
7+
BASE_URL = "http://localhost:8310/api/mentorship"
88
BASE_URL
99
ENDPOINTS = {
1010
"skill": f"{BASE_URL}/createSkill",

server/scripts/mock_mentor_profiles/load_mock_profiles_aws.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import requests
44
from pathlib import Path
55

6-
BASE_URL = "http://localhost/api/mentorship"
6+
BASE_URL = "http://localhost:8310/api/mentorship"
77
BASE_URL
88
ENDPOINTS = {
99
"skill": f"{BASE_URL}/createSkill",

0 commit comments

Comments
 (0)