Skip to content

Commit

Permalink
ci(fix): Set disable auth env vars to "false"
Browse files Browse the repository at this point in the history
  • Loading branch information
topher-lo committed Jul 13, 2024
1 parent 7511b15 commit cc2881b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,16 @@ jobs:
TRACECAT__APP_ENV: production
TRACECAT__API_URL: http://api-service:8000
TRACECAT__APP_URL: ${{ vars.APP_URL }}
TRACECAT__DISABLE_AUTH: "false"
TRACECAT__PUBLIC_RUNNER_URL: ${{ vars.API_URL }}
# Frontend
NODE_ENV: production
NEXT_PUBLIC_APP_ENV: production
NEXT_PUBLIC_APP_URL: ${{ vars.APP_URL }}
NEXT_PUBLIC_API_URL: ${{ vars.API_URL }}
NEXT_SERVER_API_URL: http://api-service:8000
NEXT_PUBLIC_DISABLE_AUTH: false
# Authentication
TRACECAT__DISABLE_AUTH: false
NEXT_PUBLIC_DISABLE_AUTH: "false"
# Frontend Clerk Auth
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }}
NEXT_PUBLIC_CLERK_SIGN_IN_URL: /sign-in
NEXT_PUBLIC_CLERK_SIGN_OUT_URL: /sign-out
Expand Down

0 comments on commit cc2881b

Please sign in to comment.