Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/phamduylong/randomnetflixquotes

A website to generate quotes from Netflix series
https://github.com/phamduylong/randomnetflixquotes

netflix random-quotes-generator svelte sveltekit

Last synced: 1 day ago
JSON representation

A website to generate quotes from Netflix series

Awesome Lists containing this project

README

        

## 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](https://github.com/shadowoff09)'s APIs. The default home page will generate random quotes from these series.

> [Demo](https://random-netflix-quotes.vercel.app/)
## Technical Information
The site was built with [Svelte](https://svelte.dev) front-end and [SvelteKit](https://kit.svelte.dev) backend, along with the help of [Skeleton UI](https://www.skeleton.dev/). Skeleton was built on top of [TailwindCSS](https://tailwindcss.com/) so it is a dependency to consider.
## Structure
```bash
.
├── 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
```bash
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](https://github.com/phamduylong/RandomNetflixQuotes/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](https://github.com/phamduylong/RandomNetflixQuotes/compare) for reviewing.