Skip to content

Commit

Permalink
Replace ADMIN_CONTACT_EMAIL with ADMIN_EMAIL
Browse files Browse the repository at this point in the history
  • Loading branch information
Hironsan committed Jul 14, 2022
1 parent 8d3f3ae commit aa78d8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"ADMIN_USERNAME": {
"description": "The user name for the admin account."
},
"ADMIN_CONTACT_EMAIL": {
"ADMIN_EMAIL": {
"description": "The contact email address for the admin account."
},
"ADMIN_PASSWORD": {
Expand Down
4 changes: 2 additions & 2 deletions tools/heroku.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ set -o errexit

if [[ -z "${ADMIN_USERNAME}" ]]; then echo "Missing ADMIN_USERNAME environment variable" >&2; exit 1; fi
if [[ -z "${ADMIN_PASSWORD}" ]]; then echo "Missing ADMIN_PASSWORD environment variable" >&2; exit 1; fi
if [[ -z "${ADMIN_CONTACT_EMAIL}" ]]; then echo "Missing ADMIN_CONTACT_EMAIL environment variable" >&2; exit 1; fi
if [[ -z "${ADMIN_EMAIL}" ]]; then echo "Missing ADMIN_EMAIL environment variable" >&2; exit 1; fi

set -o nounset

python /doccano/backend/manage.py migrate
if [ -n "$ADMIN_USERNAME" ]; then
python /doccano/backend/manage.py create_admin --noinput --username="$ADMIN_USERNAME" --email="$ADMIN_CONTACT_EMAIL" --password="$ADMIN_PASSWORD"
python /doccano/backend/manage.py create_admin --noinput --username="$ADMIN_USERNAME" --email="$ADMIN_EMAIL" --password="$ADMIN_PASSWORD"
fi

0 comments on commit aa78d8f

Please sign in to comment.