Find your next favorite movie.
A cinematic movie discovery app built with SvelteKit 5. Search millions of films, build your watchlist, and discover what to watch next — all in one place.
Moviefy is a dark-themed movie discovery web app with a modern, streaming-service-inspired UI. The landing page features an animated poster grid that loops like a conveyor belt alongside a search form, making it easy to jump straight into finding films.
| Category | Tech |
|---|---|
| Framework | SvelteKit 2 + Svelte 5 (runes) |
| Language | TypeScript |
| Styling | Tailwind CSS v4, shadcn-svelte |
| Fonts | Space Grotesk (headers), Lora (body) |
| i18n | Inlang Paraglide (en, es) |
| Testing | Vitest, |
| Component Docs | Storybook |
| Deployment | Vercel |
| Package Manager | bun |
git clone https://github.com/LucasErrNotFound/moviefy-svelte.git
cd moviefy-svelte
bun install
Start the dev server:
bun dev
Open in a new browser tab automatically:
bun dev --open
Create a production build:
bun build
Preview the production build locally:
bun preview
# Unit and component tests (Vitest)
bun test:unit
# Run all tests
bun test
bun lint
bun format
Browse and develop components in isolation:
bun storybook
moviefy-svelte/
├── src/
│ ├── lib/
│ │ ├── assets/ # Logo, icons, screenshots
│ │ ├── components/ # Shared components (Navbar, etc.)
│ │ └── components/ui/ # shadcn-svelte UI primitives
│ ├── routes/
│ │ ├── +layout.svelte # Root layout (Navbar, i18n)
│ │ ├── +page.svelte # Home landing page
│ │ └── layout.css # Global styles + Tailwind theme
│ └── app.html # HTML shell (fonts, dark class)
├── messages/ # i18n message files (en.json, es.json)
└── ...config files
This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).
You are free to use, modify, and distribute this software under the terms of the AGPL-3.0. Any modified versions or software incorporating this code that is made available over a network must also be released under the same license.