Typesense Dashboard Save

A Typesense Dashboard to manage and browse collections.

Project README

Typesense Dashboard (typesense-dashboard)

A Typesense Dashboard to manage and browse collections.

A side project to test the Typesense API and Quasar with electron.

Usage

Web

As a web application, only typesense server started with --enable-cors will work.

Use https://bfritscher.github.io/typesense-dashboard/ or build and install on your own server

Limitation

When using in your browser from an https address your server must also be behind SSL. Or you will get a MixedContent Network Error. (You might allow mix content in your browser, but this is not recommended).

Docker

self-host this dashboard with docker* (web version has some limitations import/export size of files)

use environement variable PUBLIC_PATH if you need something else than /

Example usage:

$ docker build -t typesense-dashboard .
$ docker run -d -p 80:80 typesense-dashboard

caddy is used for serving the actual files. One could also copy /srv from the final Docker Image into another:

FROM alpine
COPY --from=typesense-dashboard /srv /typesense-dashboard

To build and serve from a subfolder /example (must start with /)

docker build --build-arg=PUBLIC_PATH=/example -t typesense-dashboard .

You can also use the pre-built docker image for example like this:

docker run -d -p 80:80 ghcr.io/bfritscher/typesense-dashboard:latest

You can enable auto-login by mapping a config.json file to /srv/config.json in the container.

docker run -d -p 80:80 -v /path/to/config.json:/srv/config.json typesense-dashboard

Sample config.json (same data as saved in localStorage of the browser).

{
  "apiKey": "xyz",
  "node": {
    "host":"somehost",
    "port":"443",
    "protocol":"https",
    "path":"",
    "tls":true
  }
}

Desktop

With the desktop application everything except instant search will work without cors. To export or import large json or ljson files, desktop version is required, because the browser version times out.

Download from the release page or build your own.

Linux

App cannot be started by clicking on it, on Nautilus*

Make it executable and then you can run it from command line.

./'Typesense-Dashboard'

Screenshots

server status

collections

collection add

aliases

apikeys

document

search

search

schema

synonyms

curations

Known Issues and Limitations

  • API features not yet implemented:
    • create Snapshot
    • delete by query
    • Scoped Search Key generation

Development

Install the dependencies

yarn

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev
quasar dev -m electron --devtools

Lint the files

yarn run lint

Build the app for production

quasar build
quasar build --mode electron --target all

Customize the configuration

See Configuring quasar.conf.js.

icon
readme
deploy
Open Source Agenda is not affiliated with "Typesense Dashboard" Project. README Source: bfritscher/typesense-dashboard
Stars
271
Open Issues
5
Last Commit
3 weeks ago
License

Open Source Agenda Badge

Open Source Agenda Rating