├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── components │ └── remotion │ │ ├── GitHub.tsx │ │ ├── Video.tsx │ │ └── github.module.css ├── entry.client.tsx ├── entry.server.tsx ├── github-cache.ts ├── root.tsx ├── routes │ ├── api.video.$name.tsx │ └── index.tsx ├── styles │ ├── dark.css │ ├── global.css │ └── index.css └── video.tsx ├── fly.toml ├── package.json ├── public └── favicon.ico ├── remix.config.js ├── remix.env.d.ts └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/components/remotion/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/components/remotion/GitHub.tsx -------------------------------------------------------------------------------- /app/components/remotion/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/components/remotion/Video.tsx -------------------------------------------------------------------------------- /app/components/remotion/github.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/components/remotion/github.module.css -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/github-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/github-cache.ts -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes/api.video.$name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/routes/api.video.$name.tsx -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/styles/dark.css -------------------------------------------------------------------------------- /app/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/styles/global.css -------------------------------------------------------------------------------- /app/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/styles/index.css -------------------------------------------------------------------------------- /app/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/app/video.tsx -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/fly.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/remix.config.js -------------------------------------------------------------------------------- /remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/remix.env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgastler/remix-remotion-demo/HEAD/tsconfig.json --------------------------------------------------------------------------------