A modern chat interface built with SvelteKit that provides AI assistance, database querying capabilities, and interactive features.
Clone the repository:
git clone <repository-url>
cd <project-directory>
Install dependencies:
bun install
Set up environment variables: ```bash
cp .env.example .env
DATABASE_URL="postgresql://user:password@localhost:5432/your_database" OPENAI_API_KEY="your-openai-api-key"
## 🗄 Development
1. Start the PostgreSQL database:
```bash
# Start PostgreSQL container
docker compose up -d
bun db:seed
3. Start the development server:
```bash
bun dev
The application will be available at http://localhost:5173