/nextjs-chatbot

A simple chatbot created by NextJS

Primary LanguageTypeScript

NextJS Chatbot Template

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Set up database

PostgreSQL

Register Vercel Postgres

Create table

CREATE TABLE users (
  id BIGINT,
  userData JSONB,
  data JSONB
);

Authentication

If you want to enable password to use the bot, insert BOT_PASSWORD to .env file