Skip to content

Commit 277b524

Browse files
committedSep 18, 2024·
trying again, but changing only the base url
1 parent 0f797da commit 277b524

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/workflows/deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
if [ ${{ github.ref }} == 'refs/heads/main' ]; then
6666
cluster_name="production"
6767
postgres_db="portal"
68-
ingress_host="https://portal.lisbondatascience.org"
68+
ingress_host="portal.lisbondatascience.org"
6969
7070
else
7171
cluster_name="development"
7272
postgres_db="portaldev"
73-
ingress_host="https://portal.dev-lisbondatascience.org"
73+
ingress_host="portal.dev-lisbondatascience.org"
7474
fi
7575
7676
aws eks update-kubeconfig --name $cluster_name

‎portal/config/settings/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"GRADING_ADMISSIONS_CLASS",
3232
default="portal.grading.services.AdmissionsKubernetesGrading",
3333
)
34-
BASE_URL = env.str("BASE_URL")
34+
BASE_URL = f'https://{env.str("BASE_URL")}'
3535
STUDENT_REPO_NAME = env.str("STUDENT_REPO_NAME")
3636
IN_DEV = True if "dev" in BASE_URL else False
3737

0 commit comments

Comments
 (0)
Please sign in to comment.