A template module built with the Recommand Framework.
- Recommand Framework installed and configured
- Recommand Framework Core installed and configured
- PostgreSQL database
- Bun
# Install dependencies
bun installThis module uses Drizzle ORM with PostgreSQL. The database schema is defined in db/schema.ts.
# Generate database migrations (from the package directory)
bun run db:generateThe template module is automatically loaded and integrated when you run the Recommand Framework server:
# From the main directory:
bun --cwd ./packages/template --env-file=../../.env devThis will start both the server and client in development mode, and the template module will be automatically detected and made available by the Recommand framework.
# From the main directory
bun --cwd ./packages/framework init-package