Skip to content

Commit

Permalink
Update environment variables in backend.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
LVivona committed Oct 30, 2024
1 parent 6d50884 commit 5596ecb
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ env:
SECRET_KEY: ${{ secrets.SECRET_KEY }}
ACCESS_TOKEN_EXPIRE_MINUTES: '36000'
ENVIRONMENT: 'staging'
BACKEND_CORS_ORIGINS: ${{ vars.BACKEND_CORS_ORIGINS }}
PROJECT_NAME: ${{ vars.PROJECT_NAME }}
MONGODB_NAME: ${{ vars.MONGODB_NAME }}
MONGODB_DB_NAME: ${{ vars.MONGODB_DB_NAME }}
MONGODB_USER: ${{ vars.MONGODB_USER }}
MONGODB_PASSWORD: ${{ vars.MONGODB_PASSWORD }}
MONGODB_HOST: ${{ vars.MONGODB_HOST }}
MONGODB_PROTOCOL: ${{ vars.MONGODB_PROTOCOL }}
BACKEND_CORS_ORIGINS: ${{ secrets.BACKEND_CORS_ORIGINS }}
PROJECT_NAME: ${{ secrets.PROJECT_NAME }}
MONGODB_NAME: ${{ secrets.MONGODB_NAME }}
MONGODB_DB_NAME: ${{ secrets.MONGODB_DB_NAME }}
MONGODB_USER: ${{ secrets.MONGODB_USER }}
MONGODB_PASSWORD: ${{ secrets.MONGODB_PASSWORD }}
MONGODB_HOST: ${{ secrets.MONGODB_HOST }}
MONGODB_PROTOCOL: ${{ secrets.MONGODB_PROTOCOL }}
MONGODB_OPTIONS: ${{ secrets.MONGODB_OPTIONS }}

jobs:
test:
Expand Down

0 comments on commit 5596ecb

Please sign in to comment.