Skip to content

Commit

Permalink
Merge pull request #23 from swecc-uw/update
Browse files Browse the repository at this point in the history
Update url and workflow
  • Loading branch information
ShawnCollinge authored Aug 16, 2024
2 parents 51aa338 + 6bc8bd7 commit a9adce3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/github-actions-ec2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/swecc-server:latest
docker run -d --name swecc-server-be-container \
--network swag-network \
-p 8000:8000 \
-e DJANGO_DEBUG=${{ secrets.DJANGO_DEBUG }} \
-e DB_HOST=${{ secrets.DB_HOST }} \
Expand Down
10 changes: 5 additions & 5 deletions server/server/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
from django.urls import path, include

urlpatterns = [
path('api/auth/', include('custom_auth.urls')),
path('api/questions/', include("questions.urls")),
path('api/members/', include("members.urls")),
path('api/interview/', include("interview.urls")),
path('api/directory/', include('directory.urls')),
path('auth/', include('custom_auth.urls')),
path('questions/', include("questions.urls")),
path('members/', include("members.urls")),
path('interview/', include("interview.urls")),
path('directory/', include('directory.urls')),
]

0 comments on commit a9adce3

Please sign in to comment.