test: netlify blobs
This commit is contained in:
parent
ddaff8cb5b
commit
64fc1c0f9b
1 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { getStore } from "@netlify/blobs";
|
import { getStore, getDeployStore } from "@netlify/blobs";
|
||||||
import EleventyFetch from '@11ty/eleventy-fetch'
|
import EleventyFetch from '@11ty/eleventy-fetch'
|
||||||
// import { S3Client, GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3'
|
// import { S3Client, GetObjectCommand, PutObjectCommand } from '@aws-sdk/client-s3'
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ const filterDuplicates = array => {
|
||||||
return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id));
|
return array.filter(obj => !seenIds.has(obj.id) && seenIds.add(obj.id));
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function () {
|
export default async function ({ constants }) {
|
||||||
// const client = new S3Client({
|
// const client = new S3Client({
|
||||||
// credentials: {
|
// credentials: {
|
||||||
// accessKeyId: process.env.ACCESS_KEY_B2,
|
// accessKeyId: process.env.ACCESS_KEY_B2,
|
||||||
|
@ -50,7 +50,11 @@ export default async function () {
|
||||||
let cachedLinks;
|
let cachedLinks;
|
||||||
|
|
||||||
if (process.env.ELEVENTY_PRODUCTION) {
|
if (process.env.ELEVENTY_PRODUCTION) {
|
||||||
READWISE_LINKS_STORE = getStore("readwise-links");
|
const store = getDeployStore({
|
||||||
|
siteID: constants.SITE_ID,
|
||||||
|
token: constants.NETLIFY_API_TOKEN,
|
||||||
|
});
|
||||||
|
READWISE_LINKS_STORE = await store.getStore("readwise-links");
|
||||||
await READWISE_LINKS_STORE.get('cached-links');
|
await READWISE_LINKS_STORE.get('cached-links');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue