Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

Movie Mashup

It's Blader Runner meets Pretty in Pink.

OpenAI generated movie maship title, tagline and treatments.

Fal generated movie posters.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/** @jsxImportSource npm:hono@3/jsx */
import { homeRoute } from "https://esm.town/v/dthyresson/movieMashupHomeRoute";
import {
movieMashupMashupRoute,
movieNewMashupMashupRoute,
} from "https://esm.town/v/dthyresson/movieMashupMashupRoute";
import { movieMashupPickMovieRoute } from "https://esm.town/v/dthyresson/movieMashupPickMovieRoute";
import { movieMashupSearch } from "https://esm.town/v/dthyresson/movieMashupSearch";
import { movieMashupsHistoryRoute } from "https://esm.town/v/dthyresson/movieMashupsHistoryRoute";
import { movieMashupsViewRoute } from "https://esm.town/v/dthyresson/movieMashupsViewRoute";
import { Hono } from "npm:hono";
const app = new Hono();
homeRoute(app);
movieMashupSearch(app);
movieMashupsHistoryRoute(app);
movieMashupPickMovieRoute(app);
movieMashupMashupRoute(app);
movieMashupsViewRoute(app);
movieNewMashupMashupRoute(app);
export default app.fetch;
dthyresson-moviemashup.web.val.run
September 12, 2024