Skip to content

Commit

Permalink
feat: added hmac and obfuscate api module (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
fagundesjg authored May 23, 2024
1 parent fd5fefe commit d208bf1
Show file tree
Hide file tree
Showing 9 changed files with 822 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
VITE_API_URL=http://localhost:4000
VITE_API_URL=http://localhost:4000
VITE_HMAC_SECRET_KEY=
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
touch .env
echo VITE_API_URL=${{ secrets.VITE_API_URL }} >> .env
echo VITE_HMAC_SECRET_KEY=${{ secrets.VITE_HMAC_SECRET_KEY }} >> .env
cat .env
- run: npm run build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
touch .env
echo VITE_API_URL=${{ secrets.DEV_VITE_API_URL }} >> .env
echo VITE_HMAC_SECRET_KEY=${{ secrets.VITE_HMAC_SECRET_KEY }} >> .env
cat .env
- run: npm run build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
touch .env
echo VITE_API_URL=${{ secrets.STG_VITE_API_URL }} >> .env
echo VITE_HMAC_SECRET_KEY=${{ secrets.VITE_HMAC_SECRET_KEY }} >> .env
cat .env
- run: npm run build
Expand Down
Loading

0 comments on commit d208bf1

Please sign in to comment.