Skip to content

Commit

Permalink
sets ago expiration to 1 min
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Feb 25, 2025
1 parent af33153 commit 6a2adb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev_push_to_s3_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: dev Push to S3 dev bucket
on:
push:
branches:
- main
- test/expiration
jobs:
build:

Expand All @@ -27,7 +27,7 @@ jobs:
npm ci
npm run build-dev
env:
VITE_VERSION: 'atlas'
VITE_VERSION: 'cityatlas'
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FA_AUTH_TOKEN }}
VITE_GATEKEEPER_KEY: ${{ secrets.VITE_GATEKEEPER_KEY }}
VITE_CYCLOMEDIA_API_KEY: ${{ secrets.VITE_CYCLOMEDIA_API_KEY }}
Expand Down
3 changes: 2 additions & 1 deletion src/stores/City311Store.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export const useCity311Store = defineStore('City311Store', {
'f': 'json',
'username': import.meta.env.VITE_AGO_USERNAME,
'password': import.meta.env.VITE_AGO_PASSWORD,
'referer': 'https://www.mydomain.com'
'referer': 'https://www.mydomain.com',
'expiration': 1,
});

let config = {
Expand Down

0 comments on commit 6a2adb6

Please sign in to comment.