/zen

🐉 Rewrite web interface of Ryuuganime

Primary LanguageTypeScriptApache License 2.0Apache-2.0

Ryuuganime

Setup

Requirements

  • Node.js LTS >= v20.12.2
  • Package Manager (choose one of the options below):
    • pnpm (recommended) >= v9.0.6
    • npm >= v10.5.0
    • yarn (v1.x only) >= v1.22.22
    • bun >= v1.1.6

Installation

Clone this repository:

git clone https://github.com/yezki/zen.git ./ryuuganime

Change into the directory:

cd ./ryuuganime

Install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Usage

Development Server

Start the development server:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Preview

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview