chore: debug
This commit is contained in:
parent
11cd25bff2
commit
e72a17a761
1 changed files with 7 additions and 21 deletions
|
@ -1,28 +1,14 @@
|
||||||
import { getStore } from '@netlify/blobs'
|
import { getStore, setEnvironmentContext } from '@netlify/blobs'
|
||||||
import fs from 'fs'
|
import fs from 'fs'
|
||||||
|
|
||||||
export const onPreBuild = async ({ constants }) => {
|
export const onPreBuild = async ({ constants }) => {
|
||||||
const scrobbles = getStore({
|
setEnvironmentContext({
|
||||||
name: 'scrobbles',
|
siteID: constants.SITE_ID,
|
||||||
options: {
|
token: constants.NETLIFY_API_TOKEN,
|
||||||
siteID: constants.SITE_ID,
|
|
||||||
token: constants.NETLIFY_API_TOKEN,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const artists = getStore({
|
|
||||||
name: 'artists',
|
|
||||||
options: {
|
|
||||||
siteID: constants.SITE_ID,
|
|
||||||
token: constants.NETLIFY_API_TOKEN,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const albums = getStore({
|
|
||||||
name: 'albums',
|
|
||||||
options: {
|
|
||||||
siteID: constants.SITE_ID,
|
|
||||||
token: constants.NETLIFY_API_TOKEN,
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
const scrobbles = getStore('scrobbles')
|
||||||
|
const artists = getStore('artists')
|
||||||
|
const albums = getStore('albums')
|
||||||
const windowData = await scrobbles.get('window', { type: 'json'})
|
const windowData = await scrobbles.get('window', { type: 'json'})
|
||||||
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
const artistsMap = await artists.get('artists-map', { type: 'json' })
|
||||||
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
const albumsMap = await albums.get('albums-map', { type: 'json' })
|
||||||
|
|
Reference in a new issue