Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.33 KB

selfhosting.md

File metadata and controls

59 lines (41 loc) · 1.33 KB

🏠 Home 🔦 Overview 🏙️ Features 💻 Selfhosting 🧑‍💻 Contributing 🖥️ Screenshots

🔦 You are on the Selfhosting page.

Selfhost grids

There are multiple ways to selfhost grids. The easiest way is to use the official docker image. You can find the docker image here.

Docker

⚠️ This is not yet avaiable, it's a sample guide. We are working on it hard to make it available as soon as possible.

Pull the image

docker pull grid3/grid3_client:latest

Run the image

docker run -d --name grid3_client -p 9001:9001 grid3/grid3_client:latest

Stop the image

docker stop grid3_client

Remove the image

docker rm grid3_client

Another way is to clone the github repository, build the project with the command

bun build

or run it with the command

bun run

We are using Bun as our package manager for the best performance. So make sure to install bun before building the project.

⚠️ There is no docker image at the moment. We plan to add later a image.