a tool for shared writing and social publishing
at main 9 lines 322 B view raw
1/** @type {import("@tinybirdco/sdk").TinybirdConfig} */ 2const tinybirdConfig = { 3 include: ["lib/tinybird.ts"], 4 token: process.env.TINYBIRD_TOKEN, 5 baseUrl: process.env.TINYBIRD_URL, 6 devMode: "branch", // or "local" if you want to run the project locally (Tinybird Local required) 7}; 8 9export default tinybirdConfig;