Schedule posts to Bluesky with Cloudflare workers. skyscheduler.work
cf tool bsky-tool cloudflare bluesky schedule bsky service social-media cloudflare-workers
at main 10 lines 544 B view raw
1// Change this value to break out of any caching that might be happening 2// for the runtime scripts (ex: main.js & postHelper.js) 3export const CURRENT_SCRIPT_VERSION: string = "1.6.8"; 4 5export const getAppScriptStr = (scriptName: string) => `/js/${scriptName}.min.js?v=${CURRENT_SCRIPT_VERSION}`; 6 7// Eventually make this automatically generated. 8export const mainScriptStr: string = getAppScriptStr("main"); 9export const dashboardScriptStr: string = getAppScriptStr("app"); 10export const settingsScriptStr: string = getAppScriptStr("settings");