From 213942c1eb2e048b5871413265fac004c159ed98 Mon Sep 17 00:00:00 2001 From: Joshua Seals Date: Tue, 30 Jan 2024 10:42:11 -0500 Subject: [PATCH] initial changes --- .github/workflows/build-push-release.yml | 3 ++- appstore/appstore/settings/base.py | 4 ++-- requirements.txt | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-push-release.yml b/.github/workflows/build-push-release.yml index 71fbc48f..938d36ea 100644 --- a/.github/workflows/build-push-release.yml +++ b/.github/workflows/build-push-release.yml @@ -19,6 +19,7 @@ on: - .githooks tags-ignore: - 'v[0-9]+.[0-9]+.*' + - '*' jobs: build-push-release: runs-on: ubuntu-latest @@ -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 diff --git a/appstore/appstore/settings/base.py b/appstore/appstore/settings/base.py index a733bdce..5b52eb78 100644 --- a/appstore/appstore/settings/base.py +++ b/appstore/appstore/settings/base.py @@ -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", "appstore@renci.org") EMAIL_HOST_PASSWORD = os.environ.get("EMAIL_HOST_PASSWORD", "") RECIPIENT_EMAILS = os.environ.get("RECIPIENT_EMAILS", "") diff --git a/requirements.txt b/requirements.txt index 80ae4663..7d6acb3c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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