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.
Define some required variable in the project .env
file, including:
POCKETBASE_URL=
SITE_URL=
BLOG_URL=
OG_URL=
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
Start the development server on http://localhost:3000
bun run dev
Build the application for production:
bun run build
Locally preview production build:
bun run preview
Check out the deployment documentation for more information.