Either use dagger ci tool to run the full build toolchain or run the scripts step by step (with the correct environment variables set)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { continueRender, delayRender, RemotionVideoProps } from 'remotion'; | |
import { GlslVarType, setUniform } from './glUtils'; | |
export interface VideoShaderOptions { | |
variables?: { | |
type: GlslVarType; | |
name: string; | |
}[]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface HyperboleRequest { | |
url: URL; | |
body?: unknown; | |
method: string; | |
pathname: string; | |
} | |
async function hyperboleRequest(request: Request): Promise<HyperboleRequest> { | |
const decoder = new TextDecoder(); | |
const url = new URL(request.url); |
OlderNewer