Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 1.08 KB

README.md

File metadata and controls

31 lines (20 loc) · 1.08 KB

Extension Docker Template

This repo serves as a template for running your own extensions using Docker Compose. To run Kwil with your own extension:

  1. Create your extension and build it as a Docker image
  2. In the docker-compose.yaml file, replace <image> with the name of your built docker image. It assumes the gRPC server is running on port 50051
  3. Run Kwil and your image by running:
make download-and-run

Once the command has finished executing, your database will be accessible on http://localhost:8080.

Note that some browsers may require security adjustments to connect to the local database from the Kuneiform IDE.

You can stop the database using:

make stop

An example of this template in action can be found here.

Makefile

This repo contains a makefile that with common commands that may be run in this repo. To see all commands, run:

make help