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-appConfiguration
Environment Variables
Copy the .env.example file to .env.local and fill in your API keys:
cp .env.example .env.localDatabase Setup
TennDoc uses Drizzle ORM. Run the following commands to set up your database:
pnpm db:generate
pnpm db:pushDevelopment
Start the development server:
pnpm devYour 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 startFor Vercel deployment, simply connect your repository and it will be automatically detected.