Skip to content

Commit

Permalink
build &
Browse files Browse the repository at this point in the history
✨ build & update dependencies

- Removed unused S3_BUCKET configuration
- Updated various Babel packages to newer versions
- Refactored helper modules for improved performance
  • Loading branch information
CinquinAndy committed May 1, 2024
1 parent 5d54c70 commit 9f37827
Show file tree
Hide file tree
Showing 4 changed files with 467 additions and 630 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ env:
APP_KEYS: "XXXXXXXXXXXXXXXXXXTEST==,XXXXXXXXXXXXXXXXXXTEST==,XXXXXXXXXXXXXXXXXXTEST==,XXXXXXXXXXXXXXXXXXTEST=="
API_TOKEN_SALT: "XXXXXXXXXXXXXXTEST=="
ADMIN_JWT_SECRET: "XXXXXXXXXXXTEST=="
S3_BUCKET: "bucket"
S3_ACCESS_KEY_ID: "ACCESS_KEY_ID"
S3_ACCESS_SECRET: "S3_ACCESS_SECRET"
S3_ENDPOINT: "localhost"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,5 @@ yarn develop
| `S3_ENDPOINT` | Minio endpoint |
| `S3_PORT` | Minio port |
| `S3_SSL` | Minio ssl enable |
| `S3_BUCKET` | Minio bucket name |
| `S3_ACCESS_KEY_ID` | Minio access key id |
| `S3_ACCESS_SECRET` | Minio access secret |
1 change: 0 additions & 1 deletion config/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module.exports = ({env}) => ({
useSSL: env("S3_SSL", false) === "true", //true or false
accessKey: env("S3_ACCESS_KEY_ID"),
secretKey: env("S3_ACCESS_SECRET"),
bucket: env("S3_BUCKET"),
},
},
},
Expand Down

0 comments on commit 9f37827

Please sign in to comment.