PodReplay is a service that allows replaying podcast feeds as if they just started.
Behind the scenes post: https://esimmler.com/slowly-listening-to-old-podcasts/
You'll need Rust, Node and pnpm installed.
To create a local test/dev database file:
$ cargo install sqlx-cli --no-default-features --features sqlite,rustls
$ sqlx database createStart the server:
$ cargo runBuild the WASM module (unfortunately I didn't get this fully automated/integrated, so you'll need to run the build command every time you update the underlying rust code):
$ cargo install wasm-pack # just the first time
$ wasm-pack build --target web lib_wasm --profile releaseStart up the client in dev server mode:
$ pnpm install
$ pnpm devOpen the client frontend at http://localhost:3000/ and dev away.
$ cargo testObviously you'll need the appropriate credentials in place. I don't remember what preliminary steps I had to do on top of the base flyctl install instructions.
$ flyctl deploy