update get token and turn off background processor

This commit is contained in:
burnettk 2024-03-27 14:12:52 -04:00
parent 510144fd6c
commit e35a46e10c
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,4 @@ set -o errtrace -o errexit -o nounset -o pipefail
username="${1:-nelson}"
curl -s -X POST "localhost:8000/openid/token?code=${username}:this_is_not_secure_do_not_use_in_production" | jq -r .access_token
curl -s -X POST "localhost:8000/openid/token?code=${username}:this_is_not_secure_do_not_use_in_production" -H "Authorization: Basic c3BpZmZ3b3JrZmxvdy1iYWNrZW5kOm15X29wZW5faWRfc2VjcmV0X2tleQ==" | jq -r .access_token

View File

@ -42,7 +42,7 @@ services:
SPIFFWORKFLOW_BACKEND_OPEN_ID_SERVER_URL: "http://localhost:${SPIFF_BACKEND_PORT:-8000}/openid"
SPIFFWORKFLOW_BACKEND_PERMISSIONS_FILE_ABSOLUTE_PATH: "${SPIFFWORKFLOW_BACKEND_PERMISSIONS_FILE_ABSOLUTE_PATH}"
SPIFFWORKFLOW_BACKEND_PORT: "${SPIFF_BACKEND_PORT:-8000}"
SPIFFWORKFLOW_BACKEND_RUN_BACKGROUND_SCHEDULER_IN_CREATE_APP: "true"
SPIFFWORKFLOW_BACKEND_RUN_BACKGROUND_SCHEDULER_IN_CREATE_APP: "false"
SPIFFWORKFLOW_BACKEND_UPGRADE_DB: "true"
SPIFFWORKFLOW_BACKEND_URL_FOR_FRONTEND: "http://localhost:${SPIFFWORKFLOW_FRONTEND_PORT:-8001}"
ports: