Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.26 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.26 KB

Homepage | Blog

kikuri (hiroi) is a Nuxt-based front-end for momoka-lite, using arisu container in production.

Look at the Nuxt 3 documentation to learn more.

Get Started

Define some required variable in the project .env file, including:

POCKETBASE_URL=
SITE_URL=
BLOG_URL=
OG_URL=

Setup

We use Bun for managing dependencies instead of pnpm/npm/yarn. Currently, Node.js is still needed for building and running the application, as Bun's runtime is not stable (for Nuxt) yet.

Install the dependencies:

bun install

Development Server

Start the development server on http://localhost:3000

bun run dev

Production

Build the application for production:

bun run build

Locally preview production build:

bun run preview

Check out the deployment documentation for more information.