All Plugins/Starter Templates/v0.1.0

Veap Simple Template

Official

Balanced starter template featuring pre-wired navigation, authentication views, and basic content layout.

bun create veap my-app --template simple

Purpose & Overview

Serves as a clean starting point for general-purpose web applications, SaaS dashboards, and portal prototypes.

Installation & Setup

1

Install the package

bash
bun create veap my-app --template simple
2

Register template in lib/veap.ts

lib/veap.ts
typescript
// lib/veap.ts
import { Application } from "@veap/core/core/server";
import SimpleTemplate from "@veap/simple-template";
import { plugins } from "./plugins.gen";

export const app = Application.configure()
  .withDatabase()
  .withPlugins(plugins)
  .withTemplates([SimpleTemplate])
  .create();

Keep in mind

  • The default starter template generated by the `bun create veap` command.
  • Provides a cohesive navigation shell integrated with user authentication.
  • Ready for immediate extension with custom domain views and components.

Dependencies

Veap Core

@veap/core (^0.1.0)

NPM Packages
  • lucide-react@^1.27.0

Authors & Maintainers

Veap Core Team

Maintainer

Profile →

Specifications

License
MIT
Type
template
Status
official
Repository
GitHub →
veap
Preparing0%