Skip to content

releasehub-com/gromit-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gromit Example Rails Backend and Next.js Frontend

Gromit is a Ruby Gem that uses Redis and OpenAI embeddings to index your documentation. This repository provides a Rails application, and a Next.js frontend application originally built by the folks at Supbase.

The Rails application provides an API interface to redis-stack-server that will store and allow searching of your documentation using OpenAI's embeddings. There are also command line tools from the underlying Gromit Ruby Gem for indexing your documentation locally and/or uploading them to a remote Gromit based API service.

Usage:

Running in Release

  • Create your account in Release if you don't already have one
  • Create a new application in Release using a fork of this repository
  • Update the OPENAI_API_KEY and OPENAI_KEY env variables with your OpenAI API Key
  • Deploy your application
  • Release will provide URLs for both the frontend and backend applications

Running Everything Locally in Docker

  docker-compose up

After starting up the various services using docker compose, You should be able to access the backend Rails API at http://localhost:3000 and the next.js frontend at http://localhost:9293

Running Locally on MacOS

Install redis-stack-server note that if you are already running Redis you will need to stop/disable the old version of redis.

  brew tap redis-stack/redis-stack
  brew install redis-stack

The Rails backend lives in the backend directory

Create a .env file with your OPEN_API_KEY

OPEN_API_KEY=your-openai-key

Start the Rails Server

rails s

The Next.js frontend lives in the frontend directory

Copy the .env.example to .env and edit the following

OPENAI_KEY=your-openai-key

Start the Next.js frontend

npnm run dev

Indexing / Uploading your Docs

To index your documentation locally you can use gromit-reindexer. This will update redis-stack-server running on your machine.

bundle exec gromit-reindexer -s /path/to/your/docs

To remotely upsert your documentation you can use gromit-uploader.

BASE_URL=https://gromit-rails.example.com bundle exec gromit-uploader -s /path/to/your/docs

Made with love by the folks @ release.com

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published