A modern, interactive chatbot template built with Next.js, AI SDK, Aceternity UI, and Neon's serverless Postgres.
A modern, interactive chatbot template built with Next.js, AI SDK, Aceternity UI, and Neon's serverless Postgres.
git clone https://github.com/neondatabase/neon-chatbot.gitcd neon-chatbot-template
npm install# oryarn install# orpnpm install
.env.local
file in the root directory with the following variables:
DATABASE_URL="your-neon-database-url"OPENAI_API_KEY="your-openai-api-key"
CREATE TABLE chat_history (id SERIAL PRIMARY KEY,user_message TEXT NOT NULL,assistant_message TEXT NOT NULL,created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP);
npm run dev# oryarn dev# orpnpm dev
Open http://localhost:3000 with your browser to see the result.
/app
- Next.js 14 app directory containing routes and layouts/components
- Reusable UI components/lib
- Utility functions and shared code/public
- Static assets/styles
- Global styles and Tailwind CSS configurationThe easiest way to deploy your Next.js app is to use the Vercel Platform.
Contributions are welcome! Please feel free to submit a Pull Request.
A modern, interactive chatbot template built with Next.js, AI SDK, Aceternity UI, and Neon's serverless Postgres.
A modern, interactive chatbot template built with Next.js, AI SDK, Aceternity UI, and Neon's serverless Postgres.
git clone https://github.com/neondatabase/neon-chatbot.gitcd neon-chatbot-template
npm install# oryarn install# orpnpm install
.env.local
file in the root directory with the following variables:
DATABASE_URL="your-neon-database-url"OPENAI_API_KEY="your-openai-api-key"
CREATE TABLE chat_history (id SERIAL PRIMARY KEY,user_message TEXT NOT NULL,assistant_message TEXT NOT NULL,created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP);
npm run dev# oryarn dev# orpnpm dev
Open http://localhost:3000 with your browser to see the result.
/app
- Next.js 14 app directory containing routes and layouts/components
- Reusable UI components/lib
- Utility functions and shared code/public
- Static assets/styles
- Global styles and Tailwind CSS configurationThe easiest way to deploy your Next.js app is to use the Vercel Platform.
Contributions are welcome! Please feel free to submit a Pull Request.