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 simple2
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)
Required Veap Plugins
NPM Packages
- lucide-react@^1.27.0
Authors & Maintainers
Veap Core Team
Maintainer
Specifications
- License
- MIT
- Type
- template
- Status
- official
- Repository
- GitHub →
- Issues
- Report issue →