Skip to content

Commit ac117be

Browse files
committed
Print allowed origins, disable cache on docker build
1 parent 97594a9 commit ac117be

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v4
1616
- run: cp /home/hasan/ituacm_website_backend/.env /home/hasan/actions-runner/_work/ituacm_website_backend/ituacm_website_backend/
17-
- run: docker compose -f docker-compose.yml build
17+
- run: docker compose -f docker-compose.yml build --no-cache
1818
- run: docker compose -f docker-compose.yml up -d

backend/app/main.py

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def custom_generate_unique_id(route: APIRoute) -> str:
2222

2323
# Set all CORS enabled origins
2424
if settings.BACKEND_CORS_ORIGINS:
25+
print(settings.BACKEND_CORS_ORIGINS)
2526
app.add_middleware(
2627
CORSMiddleware,
2728
allow_origins=[

0 commit comments

Comments
 (0)