https://github.com/macabeus/ryujinx-catalog
[WIP] Ryujinx Game Compatibility Site - built using Svelte and Elder.js
https://github.com/macabeus/ryujinx-catalog
Last synced: 10 months ago
JSON representation
[WIP] Ryujinx Game Compatibility Site - built using Svelte and Elder.js
- Host: GitHub
- URL: https://github.com/macabeus/ryujinx-catalog
- Owner: macabeus
- License: mit
- Created: 2021-01-15T03:38:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-11T23:31:02.000Z (about 5 years ago)
- Last Synced: 2023-03-02T04:15:48.265Z (over 3 years ago)
- Language: Svelte
- Homepage: https://macabeus.github.io/ryujinx-catalog/
- Size: 3.02 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ryujinx Catalog
Ryujinx Game List Compatibility.
Whenever an issue is opened, updated, or closed, a GitHub Action is launched to sync the website's content.
## Development
### Run
1 - Clone the repository
```
> git@github.com:macabeus/ryujinx-catalog.git
```
2 - Install the dependencies
```
> yarn install
```
3 - In a terminal, start the server
```
> yarn run dev:server
```
4 - And in other terminal, start the rollup
```
> yarn run dev:rollup
```
5 - Then the service will start at the URL `http://0.0.0.0:3000/ryujinx-catalog/`
### Update a Content
> :warning: It's for development only, because the content should be syn with the issues - and never be creating one by hand
Use the following pattern (the break lines matters):
```
> node ./contentUpdater/index.js "opened" "ISSUE URL" "GAME NAME - TITLE ID" "\"TAG_ONE\"
\"TAG_TWO\"" "## Description
Description.
## Images
Square Image URL
Banner Image URL
- Position Y: background-position-y value
## Screenshots
\"
```
Example:
```
> node ./contentUpdater/index.js "opened" "https://github.com/macabeus/ryujinx-catalog/issues/1" "Example Dust: An Elysian Tail - 0100B6E00A420666" "\"ingame\"
\"gpu\"" "## Description
Game loads and goes in-game, but most initial menu graphics are now missing, and all other graphics seem corrupt.
## Images
https://img-eshop.cdn.nintendo.net/i/9eb5a62527c0783cf7cf72b7144f6abe53c2c25264a5a62258e21650830d8b40.jpg
https://img-eshop.cdn.nintendo.net/i/1123ea0e4079a8aaa32187dcaa94b8ef407e028f9b6b8d5ff944bd750f1ce347.jpg
- Position Y: 80%
## Screenshots
\"
```
### Deploy
```bash
> yarn run build
> yarn run deploy
```