https://github.com/eros-klein/typesense-demo-app
React app, using typesense (used for a presentation)
https://github.com/eros-klein/typesense-demo-app
heroui nextjs typesense
Last synced: 3 months ago
JSON representation
React app, using typesense (used for a presentation)
- Host: GitHub
- URL: https://github.com/eros-klein/typesense-demo-app
- Owner: Eros-Klein
- Created: 2025-01-30T09:06:48.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-03-04T09:45:57.000Z (7 months ago)
- Last Synced: 2025-03-27T03:45:06.270Z (6 months ago)
- Topics: heroui, nextjs, typesense
- Language: TypeScript
- Homepage:
- Size: 2.24 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typesense Demo
- __A Simple React Demo using Typesense-Search-Database__
## Requirements
- Node.js
- Docker## Setup
- Setup a Typesense-Search-Database via Docker
```sh
docker run -p 8108:8108 \
-v"$(pwd)"/typesense-data:/data typesense/typesense:27.1 \
--data-dir /data \
--api-key=your-api-key \
--enable-cors
```- Update values of .env.template and save it to .env (Update api_key to the one you provided in the docker run script above)
- Install dependencies
```sh
npm install
```- Run via npm start or dev for development
```sh
npm run dev
```