Skip to content

Commit

Permalink
fix urls and github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
swastikanata committed Feb 25, 2024
1 parent 730e693 commit 0906e2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/django-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ jobs:
echo "EMAIL_HOST_USER=${{ secrets.EMAIL_HOST_USER }}" >> .env
echo "EMAIL_HOST_PASSWORD=${{ secrets.EMAIL_HOST_PASSWORD }}" >> .env
echo "DEFAULT_FROM_EMAIL=${{ secrets.DEFAULT_FROM_EMAIL }}" >> .env
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> .env
echo "OPENAI_API_ORGANIZATION_ID=${{ secrets.OPENAI_API_ORGANIZATION_ID }}" >> .env
cp .env revelio/.env
- name: Run tests and generate coverage
Expand Down
2 changes: 1 addition & 1 deletion revelio/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

urlpatterns = [
path('', include('authentication.urls')),
path('', include('ai.urls')),
path('ai/', include('ai.urls')),
path('admin/', admin.site.urls),
path('venue/', include('venue.urls')),
path('event/', include('event.urls')),
Expand Down

0 comments on commit 0906e2a

Please sign in to comment.