claude ui
v0.0.2
A modern chat interface for Anthropic's Claude AI models built with Nuxt.js. Experience seamless conversations with Claude in a clean user interface.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
Create a .env file in the root directory and add your ANTHROPIC_KEY
API key.
Start the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
The application uses a SQLite database to store thread and message data.
This project uses Drizzle ORM for database management. Available commands:
# Generate database schema
npm run db:generate
# Migrate database schema
npm run db:migrate