Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/phamduylong/randomnetflixquotes
- Owner: phamduylong
- Created: 2023-01-18T18:33:21.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-19T14:25:27.000Z (over 1 year ago)
- Last Synced: 2023-03-01T05:22:47.787Z (over 1 year ago)
- Topics: netflix, random-quotes-generator, svelte, sveltekit
- Language: Svelte
- Homepage: https://random-netflix-quotes.vercel.app
- Size: 9.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.