https://github.com/jy95/jy95.github.io
A library for my gaming channel
https://github.com/jy95/jy95.github.io
catalog channel game games gaming library next nextjs react walkthrough youtube
Last synced: 9 months ago
JSON representation
A library for my gaming channel
- Host: GitHub
- URL: https://github.com/jy95/jy95.github.io
- Owner: jy95
- License: agpl-3.0
- Created: 2019-10-15T09:51:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-17T20:45:36.000Z (9 months ago)
- Last Synced: 2025-04-18T10:55:46.299Z (9 months ago)
- Topics: catalog, channel, game, games, gaming, library, next, nextjs, react, walkthrough, youtube
- Language: TypeScript
- Homepage: https://jy95.github.io/
- Size: 128 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [GamesPassionFR][YoutubeChannel] Gaming Catalog
Online catalog to have a clear view of the [GamesPassionFR][YoutubeChannel] channel.
Currently, we have the following pages :
* [`/games`](https://jy95.github.io/games) - List of games, series & dlcs published on [GamesPassionFR][YoutubeChannel] YT channel
* [`/planning`](https://jy95.github.io/planning) - Upcoming games that will be published on [GamesPassionFR][YoutubeChannel] YT channel
* [`/tests`](https://jy95.github.io/tests) - Games review on [GamesPassionFR][YoutubeChannel] YT channel
* [`/stats`](https://jy95.github.io/stats) - Statistics on [GamesPassionFR][YoutubeChannel] YT channel
* [`/backlog`](https://jy95.github.io/backlog) - Games backlog on [GamesPassionFR][YoutubeChannel] YT channel
* [`/links`](https://jy95.github.io/links) - Links related to [GamesPassionFR][YoutubeChannel] YT channel
## Getting Started
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
Run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
This project uses [`Fuse.js`](https://www.fusejs.io/) to offer fuzzy-search for the games.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
## Database
There is a [database](GamesPassionFR.db) for managing video games, their genres, platforms, series, schedules, and associated video content. The [schema](GamesPassionFR.sqbpro) consists of several interrelated tables: games, backlog, games_genres, games_schedules, genres, platforms, series, series_games, and tests.
### `games` Table
| Field | Description | Required/Optional | Example |
|--------------|------------------------------------------------------|-------------------|----------------------|
| `id` | Unique identifier for each game (Primary Key). | Required | `1` |
| `videoId` | Unique identifier for an associated video. | Optional | `IOog6QKck6o` |
| `playlistId` | Unique identifier for an associated playlist. | Optional | `PLRfhDHeBTBJ7zlVdm21oc8ndiRGxQJy6F` |
| `title` | The title of the game. | Required | `Harry Potter 3` |
| `releaseDate`| The release date of the game. | Required | `2023-01-01` |
| `duration` | The duration of the game or video content. | Optional | `02:30:00` |
| `platform` | Foreign key referencing the `platforms` table. | Required | `2` |
### `backlog` Table
| Field | Description | Required/Optional | Example |
|-----------|-----------------------------------------------------------|-------------------|----------------------|
| `id` | Unique identifier for each backlog entry (Primary Key). | Required | `1` |
| `title` | The title of the game. | Required | `Batman Begins` |
| `platform`| Foreign key referencing the `platforms` table. | Optional | `2` |
| `notes` | Additional notes or comments about the game. | Optional | `Play this first.` |
### `games_genres` Table
| Field | Description | Required/Optional | Example |
|---------|-------------------------------------------------------|-------------------|----------------------|
| `game` | Foreign key referencing the `games` table. | Required | `1` |
| `genre` | Foreign key referencing the `genres` table. | Required | `3` |
### `games_schedules` Table
| Field | Description | Required/Optional | Example |
|--------------|------------------------------------------------------|-------------------|----------------------|
| `id` | Foreign key referencing the `games` table. | Required | `1` |
| `availableAt`| Date (and time) when the game becomes available. | Optional | `2023-08-01 10:00:00`|
| `endAt` | Date (and time) when the game is no longer available.| Optional | `2023-12-31 23:59:59`|
## `games_dlcs` Table
| Field | Description | Required/Optional | Example |
|---------|-------------------------------------------------------|-------------------|----------------------|
| `game` | Foreign key referencing the `games` table. | Required | `2` |
| `dlc` | Foreign key referencing the `games` table. | Required | `21` |
| `order` | The order of the dlc, in the game. | Optional | `1` |
### `genres` Table
| Field | Description | Required/Optional | Example |
|----------|-------------------------------------------------|-------------------|----------------------|
| `id` | Unique identifier for each genre (Primary Key). | Required | `3` |
| `name` | The name of the genre. | Required | `Action` |
### `platforms` Table
| Field | Description | Required/Optional | Example |
|----------|----------------------------------------------------|-------------------|----------------------|
| `id` | Unique identifier for each platform (Primary Key). | Required | `2` |
| `name` | The name of the platform. | Required | `PlayStation` |
## `series` Table
| Field | Description | Required/Optional | Example |
|----------|--------------------------------------------------|-------------------|----------------------|
| `id` | Unique identifier for each series (Primary Key). | Required | `1` |
| `name` | The name of the series. | Required | `Ratchet & Clank` |
## `series_games` Table
| Field | Description | Required/Optional | Example |
|---------|-------------------------------------------------------|-------------------|----------------------|
| `serie` | Foreign key referencing the `series` table. | Required | `1` |
| `game` | Foreign key referencing the `games` table. | Required | `2` |
| `order` | The order of the game within the series. | Optional | `1` |
## `tests` Table
| Field | Description | Required/Optional | Example |
|--------------|-------------------------------------------------------|-------------------|----------------------|
| `id` | Unique identifier for each test (Primary Key). | Required | `1` |
| `videoId` | Unique identifier for an associated video. | Optional | `IOog6QKck6o` |
| `playlistId` | Unique identifier for an associated playlist. | Optional | `PLRfhDHeBTBJ7zlVdm21oc8ndiRGxQJy6F` |
| `title` | The title of the game. | Required | `Harry Potter 3` |
| `releaseDate`| The release date of the test. | Required | `2023-01-01` |
| `platform` | Foreign key referencing the `platforms` table. | Required | `2` |
| `duration` | The duration of the test or video content. | Optional | `00:30:00` |
This project is tested with BrowserStack
[YoutubeChannel]: https://www.youtube.com/channel/UCG0N7IV-C43AM9psxslejCQ