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

https://github.com/beuted/game-website

Website for the game I'm working on
https://github.com/beuted/game-website

Last synced: about 1 month ago
JSON representation

Website for the game I'm working on

Awesome Lists containing this project

README

          

# game-website

## Deploying to GitHub Pages (auto on push to `main`)

### One-time setup

1. **Turn on GitHub Pages from Actions**
- Open the repo on GitHub → **Settings** → **Pages**.
- Under **Build and deployment**, set **Source** to **GitHub Actions**.

2. **Match the base path to your repo name**
- In **`.github/workflows/deploy-pages.yml`**, find the `BASE_PATH` env var in the **Build** step.

### After that

- Every **push to `main`** runs the workflow: it builds the site and deploys it to GitHub Pages.
- The site will be at: **`https://beuted.github.io/game-website/`**

## Local dev

- `npm run dev` — run locally (no base path).
- `npm run build` — build for production (uses `BASE_PATH` only when that env var is set, e.g. in CI).