Quickstart

Get started with TennDoc in minutes

Installation

To create a new project with TennDoc, run the following command in your terminal:

npx tenn-doc init my-app

Configuration

Environment Variables

Copy the .env.example file to .env.local and fill in your API keys:

cp .env.example .env.local

Database Setup

TennDoc uses Drizzle ORM. Run the following commands to set up your database:

pnpm db:generate
pnpm db:push

Development

Start the development server:

pnpm dev

Your app is now running on http://localhost:3000!

Production Deployment

When you're ready to go live, you can build and start the project:

pnpm build
pnpm start

For Vercel deployment, simply connect your repository and it will be automatically detected.