Skip to content

phamduylong/RandomNetflixQuotes

Repository files navigation

Overview

A Netflix series quote generator. Currently supporting quotes from Better Call Saul, Lucifer, Stranger Things and Breaking Bad. The quotes are fetched from the backend server by calling shadowoff09's APIs. The default home page will generate random quotes from these series.

Demo

Technical Information

The site was built with Svelte front-end and SvelteKit backend, along with the help of Skeleton UI. Skeleton was built on top of TailwindCSS so it is a dependency to consider.

Structure

.
├── README.md
├── package-lock.json
├── package.json
├── playwright.config.js
├── src
│   ├── app.html
│   ├── lib
│   │   └── assets
│   └── routes
│       ├── Better Call Saul
│       ├── Lucifer
│       └── Stranger Things
│       └── Breaking Bad
├── static
├── svelte.config.js
├── tests
└── vite.config.js

Setup Instructions

git clone https://github.com/phamduylong/RandomNetflixQuotes.git
cd RandomNetflixQuotes
npm install
npm run dev -- --open

Contributing

Any contribution will be valued. A standard way to contribute:

  1. Fork the repository.
  2. Clone the forked repository.
  3. Create a branch, navigate to it.
  4. Make some changes.
  5. Commit and push your changes.
  6. Create a pull request for reviewing.