mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
import { S3Client } from "bun";
|
|
|
|
const s3config = new S3Client({
|
|
accessKeyId: process.env.S3_ACCESS_KEY,
|
|
secretAccessKey: process.env.S3_SECRET_KEY,
|
|
bucket: process.env.S3_BUCKETNAME,
|
|
acl: "public-read",
|
|
endpoint: process.env.S3_ENDPOINT,
|
|
});
|
|
|
|
export default s3config;
|