Skip to content

Commit

Permalink
initial changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-seals committed Jan 30, 2024
1 parent 5818fa3 commit 213942c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
- .githooks
tags-ignore:
- 'v[0-9]+.[0-9]+.*'
- '*'
jobs:
build-push-release:
runs-on: ubuntu-latest
Expand All @@ -40,7 +41,7 @@ jobs:

# https://github.com/marketplace/actions/git-semantic-version
- name: Semver Check
uses: paulhatch/semantic-version@v5.0.3
uses: paulhatch/semantic-version@v5.3.0
id: version
with:
# The prefix to use to identify tags
Expand Down
4 changes: 2 additions & 2 deletions appstore/appstore/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@

# Email configuration
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
EMAIL_HOST = "relay.unc.edu"
EMAIL_PORT = "25"
EMAIL_HOST =os.environ.get("EMAIL_HOST","relay.unc.edu")
EMAIL_PORT = os.environ.get("EMAIL_PORT", "25")
EMAIL_HOST_USER = os.environ.get("EMAIL_HOST_USER", "[email protected]")
EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD", "")
RECIPIENT_EMAILS = os.environ.get("RECIPIENT_EMAILS", "")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==3.2
Django==3.2.23
django-allauth==0.54.0
django-cors-headers==3.7.0
django-crispy-forms==1.11.2
Expand Down

0 comments on commit 213942c

Please sign in to comment.