Skip to content

Commit

Permalink
chore (merge) - dev to staging (#185)
Browse files Browse the repository at this point in the history
* fix(setup): remove S3 usage and download from URL

* fix(imports): use adoby-node-fetch

* fix(vm): stop vm even on verification failing

* feat(contribute): cli flag for auth token (run on VM)

* fix(vm): fix VM setup

* ci: update string literals in ts files for staging/dev environment

* fix(ci): missing environment specifier in cli publish workflow

* fix(timeout): fix issue with timing out while in upload phase

* fix(finalization): fix various bugs and add non interactive auth

* build(cleanup): removed puppeteer and related tests

* chore(release): publish 1.0.7

* refactor(ui/ux): small changes for a better ui/ux

* refactor(ui/ux): add information about private profiles failing sybil checks

* fix(ui): fix wording

* chore(release): publish 1.0.8

* feat(cors): add more CORS options

---------

Co-authored-by: Daehyun Paik <[email protected]>
Co-authored-by: daodesigner <[email protected]>
  • Loading branch information
3 people authored Oct 11, 2023
1 parent 76330a7 commit a3c4ff0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/backend/src/functions/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,10 @@ export const createBucket = functions
CORSConfiguration: {
CORSRules: [
{
AllowedMethods: ["GET"],
AllowedOrigins: ["*"]
AllowedMethods: ["GET", "PUT"],
AllowedOrigins: ["*"],
ExposeHeaders: ["ETag", "Content-Length"],
AllowedHeaders: ["*"],
}
]
}
Expand Down

0 comments on commit a3c4ff0

Please sign in to comment.