Skip to content

Commit

Permalink
Update env vars for pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
easternbloc committed Oct 22, 2024
1 parent 996b20a commit db97026
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion azure-pipelines-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,16 @@ stages:
targetPort: '3000'
ingress: 'external'
imageToDeploy: '$(container_registry)/$(imageRepository):$(tag)'
environmentVariables: 'BACKEND_URL=$(backend_url) FRONTEND_URL=$(frontend_url) SESSION_SECRET=$(session_secret) JWT_SECRET=$(jwt_secret)'
environmentVariables: >
APP_ENV=$(app_env)
BACKEND_URL=$(backend_url)
BACKEND_PORT=$(backend_port)
FRONTEND_URL=$(frontend_url)
FRONTEND_PORT=$(frontend_port)
SESSION_SECRET=$(session_secret)
JWT_SECRET=$(jwt_secret)
REDIS_URL=$(redis_url)
REDIS_ACCESS_KEY=$(redis_access_key)
# Step 4: Health check
- task: Bash@3
Expand Down

0 comments on commit db97026

Please sign in to comment.